Files
NativeScript/packages/webpack/plugins/WatchStateLoggerPlugin.d.ts
Martin Guillon ff8d5979cc fix(android): improve fragment handling on navigation (#8750)
That way we dont “unload” and “load” fragments.
This fixes black screens and slow transitions with opengl or cameras
2020-08-12 10:07:58 -07:00

14 lines
504 B
TypeScript

export declare enum messages {
compilationComplete = 'Webpack compilation complete.',
startWatching = 'Webpack compilation complete. Watching for file changes.',
changeDetected = 'File change detected. Starting incremental webpack compilation...',
}
/**
* This little plugin will report the webpack state through the console.
* So the {N} CLI can get some idea when compilation completes.
*/
export declare class WatchStateLoggerPlugin {
isRunningWatching: boolean;
apply(compiler: any): void;
}