diff options
Diffstat (limited to 'tests/specs/workspaces/lockfile/pkg/mod.ts')
-rw-r--r-- | tests/specs/workspaces/lockfile/pkg/mod.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/specs/workspaces/lockfile/pkg/mod.ts b/tests/specs/workspaces/lockfile/pkg/mod.ts new file mode 100644 index 000000000..f69572b49 --- /dev/null +++ b/tests/specs/workspaces/lockfile/pkg/mod.ts @@ -0,0 +1,5 @@ +import * as denotestAdd from "@denotest/add"; + +export function add(a: number, b: number) { + return denotestAdd.add(a, b); +} |