UNPKG

angular2-hmr

Version:

angular2-hmr: Hot Module Replacement for Webpack and Angular 2

14 lines (10 loc) 323 B
import {HMR_STATE, HmrStore} from './hmr-store'; export * from './webpack-hmr'; export * from './hmr-decorator'; export * from './hmr-store'; export function provideHmrState(initialState = {}): Array<any> { return [ {provide: HMR_STATE, useValue: initialState }, {provide: HmrStore, useValue: HmrStore} ]; }