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