Files
ValueScript/inputs/passing/importFoo.ts
2023-03-09 15:38:03 +11:00

8 lines
128 B
TypeScript

// test_output! "this is the foo function"
import foo from "./helpers/foo.ts";
export default function () {
return foo();
}