Skip to content

Instantly share code, notes, and snippets.

@kt3k
Created June 1, 2020 11:25
Show Gist options
  • Save kt3k/87360ef933badd32864a44e866ab6d3c to your computer and use it in GitHub Desktop.
Save kt3k/87360ef933badd32864a44e866ab6d3c to your computer and use it in GitHub Desktop.
export * as ns from './foo.ts'
import { ns } from './bar.ts'
console.log(ns)
export const foo = 1
@kt3k
Copy link
Author

kt3k commented Jun 1, 2020

$ deno run https://gist.githubusercontent.com/kt3k/87360ef933badd32864a44e866ab6d3c/raw/4cdf0b36b210fe7ebe0f87a2fa4b7b5906e3d4de/baz.ts
Download https://gist.githubusercontent.com/kt3k/87360ef933badd32864a44e866ab6d3c/raw/4cdf0b36b210fe7ebe0f87a2fa4b7b5906e3d4de/baz.ts
Download https://gist.githubusercontent.com/kt3k/87360ef933badd32864a44e866ab6d3c/raw/4cdf0b36b210fe7ebe0f87a2fa4b7b5906e3d4de/bar.ts
Download https://gist.githubusercontent.com/kt3k/87360ef933badd32864a44e866ab6d3c/raw/4cdf0b36b210fe7ebe0f87a2fa4b7b5906e3d4de/foo.ts
Compile https://gist.githubusercontent.com/kt3k/87360ef933badd32864a44e866ab6d3c/raw/4cdf0b36b210fe7ebe0f87a2fa4b7b5906e3d4de/baz.ts
Module { foo: 1, Symbol(Symbol.toStringTag): "Module" }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment