laravel-mix-glob
Version:
Laravel mix extension that add support for globs usage with an extensive concise api. For a more natural boosted productivity and dynamic. Configure once and forget about adding the files each time.
15 lines (14 loc) • 453 B
TypeScript
import { Glob } from "../../Glob";
import { IInitShouldWatchReturn } from './types';
export declare class WatchingHandler {
shouldWatch: boolean;
watchType?: 'watch' | 'hot';
watchers: any[];
watchedFiles: string[];
watchedGlobs: Glob[];
private _restartHandler;
init(): IInitShouldWatchReturn;
private _initShouldWatch;
watchForGlobs(globs: Glob[]): this;
addWatchedFiles(files: string[]): this;
}