diff options
Diffstat (limited to 'cli/tests/type_definitions.ts')
-rw-r--r-- | cli/tests/type_definitions.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/tests/type_definitions.ts b/cli/tests/type_definitions.ts new file mode 100644 index 000000000..ecf3ae0b2 --- /dev/null +++ b/cli/tests/type_definitions.ts @@ -0,0 +1,10 @@ +// @deno-types="./type_definitions/foo.d.ts" +import { foo } from "./type_definitions/foo.js"; +// @deno-types="./type_definitions/fizz.d.ts" +import "./type_definitions/fizz.js"; + +import * as qat from "./type_definitions/qat.ts"; + +console.log(foo); +console.log(fizz); +console.log(qat.qat); |