1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 16:42:21 -05:00
denoland-deno/tests/type_definitions.ts

7 lines
196 B
TypeScript
Raw Normal View History

// @deno-types="./type_definitions/foo.d.ts"
import { foo } from "./type_definitions/foo.js";
2019-09-11 06:47:34 -04:00
// @deno-types="./type_definitions/fizz.d.ts"
import "./type_definitions/fizz.js";
console.log(foo);