diff options
Diffstat (limited to 'tests/registry/jsr/@denotest/npm-add/0.5.0/mod.ts')
-rw-r--r-- | tests/registry/jsr/@denotest/npm-add/0.5.0/mod.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/registry/jsr/@denotest/npm-add/0.5.0/mod.ts b/tests/registry/jsr/@denotest/npm-add/0.5.0/mod.ts new file mode 100644 index 000000000..733997e7b --- /dev/null +++ b/tests/registry/jsr/@denotest/npm-add/0.5.0/mod.ts @@ -0,0 +1,5 @@ +import * as npmAdd from "npm:@denotest/add@0.5"; + +export function sum(a: number, b: number): number { + return npmAdd.sum(a, b); +} |