Spaces:
Running
Running
import Runner from "./runners/Runner.js"; | |
import Watcher from "./runners/Watcher.js"; | |
import { Options } from "./types/Options.js"; | |
export { Runner, Watcher, esrun, Options }; | |
/** | |
* Run any .ts or .js file | |
*/ | |
export default function esrun(inputFile: string, options?: Options): Promise<void>; | |