mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
|
import defaultImport, * as namespaceImport from "npm:@denotest/cjs-module-export-assignment";
|
||
|
import { func } from "npm:@denotest/cjs-module-export-assignment";
|
||
|
|
||
|
console.log(defaultImport);
|
||
|
console.log(namespaceImport);
|
||
|
console.log(func());
|