File size: 400 Bytes
95f4e64
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}