diff options
Diffstat (limited to 'tests/specs/publish/npm_workspace/subtract/index.ts')
-rw-r--r-- | tests/specs/publish/npm_workspace/subtract/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/publish/npm_workspace/subtract/index.ts b/tests/specs/publish/npm_workspace/subtract/index.ts new file mode 100644 index 000000000..b5bd2dfcf --- /dev/null +++ b/tests/specs/publish/npm_workspace/subtract/index.ts @@ -0,0 +1,3 @@ +export function subtract(a: number, b: number): number { + return a - b; +} |