dem icon indicating copy to clipboard operation
dem copied to clipboard

Support .d.ts

Open syumai opened this issue 4 years ago • 0 comments

  • Parse .d.ts and create alias for them
    • https://deno.land/std/manual.md

Patterns

  • Compiler hint
// @deno-types="./vendor/https/deno.land/std/foo/bar.d.ts"
import * as bar from "./bar.js";
  • Triple-slash reference in .js
/// <reference types="./vendor/https/deno.land/std/foo/bar.d.ts" />
export const bar = "bar";

syumai avatar May 04 '20 01:05 syumai