Files
ValueScript/inputs/passing/importBar.ts
2023-03-12 15:17:14 +11:00

8 lines
191 B
TypeScript

// test_output! ["this is the bar function","this is the bar function"]
import { bar, barExported } from "./helpers/bar.ts";
export default function () {
return [bar(), barExported()];
}