UNPKG

323 BPlain TextView Raw
1import {HMR_STATE, HmrStore} from './hmr-store';
2
3export * from './webpack-hmr';
4export * from './hmr-decorator';
5export * from './hmr-store';
6
7
8export function provideHmrState(initialState = {}): Array<any> {
9 return [
10 {provide: HMR_STATE, useValue: initialState },
11 {provide: HmrStore, useValue: HmrStore}
12 ];
13}