mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
|
import * as inner from "jsr:@denotest/add";
|
||
|
|
||
|
export function add(a: number, b: number): number {
|
||
|
return inner.add(a, b);
|
||
|
}
|