1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/testdata/npm/cjs_module_export_assignment/main.ts

7 lines
241 B
TypeScript
Raw Normal View History

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());