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