mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
// @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";
|
|
|
|
console.log(foo);
|