diff options
Diffstat (limited to 'tests/specs/publish/byonm_dep/mod.ts')
-rw-r--r-- | tests/specs/publish/byonm_dep/mod.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/specs/publish/byonm_dep/mod.ts b/tests/specs/publish/byonm_dep/mod.ts new file mode 100644 index 000000000..b7c276fd4 --- /dev/null +++ b/tests/specs/publish/byonm_dep/mod.ts @@ -0,0 +1,7 @@ +import { add } from "package"; + +export function myAdd(a: number, b: number): number { + return add(a, b); +} + +export { add }; |