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.
12 lines (11 loc) • 365 B
TypeScript
import 'colors';
import { WatchingHandler } from './WatchingHandler';
import { RestartHandler } from './RestartHandler';
export declare class WatchingManager {
watchingHandler: WatchingHandler;
restartHandler: RestartHandler;
/**
* All actions that need to run in init related to the watching should go here.
*/
init(): void;
}