UNPKG

387 BTypeScriptView Raw
1export * from './webpack-state';
2export interface HotModuleReplacementOptions {
3 LOCALSTORAGE_KEY?: string;
4 localStorage?: boolean;
5 storeToken?: any;
6 globalDispose?: string;
7 saveState?: Function;
8 assignState?: Function;
9 data?: any;
10}
11export declare function hotModuleReplacement(bootloader: Function, module: any, options?: HotModuleReplacementOptions): void;