UNPKG

340 BTypeScriptView Raw
1export declare function install(useWebpack5: boolean): void;
2export declare type CheckReasons = 'test-mode' | 'default' | 'flag-disabled' | 'future-flag';
3export declare type CheckResult = {
4 enabled: boolean;
5 reason: CheckReasons;
6};
7export declare function shouldLoadWithWebpack5(phase: string, dir: string): Promise<CheckResult>;