summaryrefslogtreecommitdiff
path: root/tests/specs/node/cjs_dynamic_import_esm_with_exports/main.ts
blob: 4e25d92f09df3d9d659a26d622e3494ab149826d (plain)
1
2
3
4
import { addAsync } from "cjs-add";

const value: number = await addAsync(1, 2);
console.log(value);