diff options
Diffstat (limited to 'tests/specs/test/package_json_basic/lib.ts')
-rw-r--r-- | tests/specs/test/package_json_basic/lib.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/specs/test/package_json_basic/lib.ts b/tests/specs/test/package_json_basic/lib.ts new file mode 100644 index 000000000..1deed81f7 --- /dev/null +++ b/tests/specs/test/package_json_basic/lib.ts @@ -0,0 +1,9 @@ +import * as test from "@denotest/esm-basic"; + +export function add(a: number, b: number) { + return a + b; +} + +export function getValue() { + return test.getValue(); +} |