Spaces:
Running
Running
import Runner from "./Runner.js"; | |
import type { FSWatcher } from "chokidar"; | |
import { Options } from "../types/Options.js"; | |
export default class Watcher extends Runner { | |
protected watcher: FSWatcher | null; | |
protected watched: string[]; | |
constructor(input: string, options?: Options); | |
run(): Promise<void>; | |
rerun(): Promise<void>; | |
rebuild(): Promise<void>; | |
watch(): void; | |
} | |