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