summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/cjs_module_export_assignment/main.ts
blob: 93d3db1c39ae5a1931a46b472d82eb12e44799a4 (plain)
1
2
3
4
5
6
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());