summaryrefslogtreecommitdiff
path: root/tests/specs/publish/byonm_dep/mod.ts
blob: b7c276fd49dffa27d0c5f066f3333aca2ef1815c (plain)
1
2
3
4
5
6
7
import { add } from "package";

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

export { add };