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 };