diff options
Diffstat (limited to 'tests/registry/jsr/@denotest/add/0.2.0/mod.ts')
-rw-r--r-- | tests/registry/jsr/@denotest/add/0.2.0/mod.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/registry/jsr/@denotest/add/0.2.0/mod.ts b/tests/registry/jsr/@denotest/add/0.2.0/mod.ts new file mode 100644 index 000000000..864e8dd32 --- /dev/null +++ b/tests/registry/jsr/@denotest/add/0.2.0/mod.ts @@ -0,0 +1,4 @@ +// This is renamed to `add()` in 1.0.0. +export function sum(a: number, b: number): number { + return a + b; +} |