no1b4me's picture
Upload 5037 files
95f4e64 verified
raw
history blame contribute delete
295 Bytes
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>;