summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/package_json/basic/main.ts
blob: 5911fe32d03f89f1ea7b4f7cf907924623104861 (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as test from "@denotest/esm-basic";

console.log(test.getValue());

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

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