blob: ca4a0d17fa859b00db854719e52b4ae4905b43e9 (
plain)
1
2
3
4
5
6
7
|
import { assertStrictEquals, TestInterface } from "./index.ts";
Deno.test(function noTranspiledLines() {
const foo: TestInterface = { id: "id" };
assertStrictEquals(foo.id, "id");
});
|