Files
ValueScript/inputs/passing/importBar.ts

8 lines
192 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()];
}