summaryrefslogtreecommitdiff
path: root/tests/specs/info/package_json_basic/lib.ts
blob: 1deed81f7ec1e77e81e851a988c420f0b24d0c5c (plain)
1
2
3
4
5
6
7
8
9
import * as test from "@denotest/esm-basic";

export function add(a: number, b: number) {
  return a + b;
}

export function getValue() {
  return test.getValue();
}