summaryrefslogtreecommitdiff
path: root/tests/testdata/repl/import_type.ts
blob: 851ebad86ac43e456ced89fc5229f0cb35d9dbff (plain)
1
2
3
4
5
import { type B, create } from "./subdir/export_types.ts";

const b: B = create();

console.log(b);