UNPKG

477 BTypeScriptView Raw
1import { Provider, OpaqueToken } from 'angular2/core';
2export declare const WEBPACK_HMR: OpaqueToken;
3export declare class WebpackState {
4 private _state;
5 private _noop;
6 private _states;
7 constructor(state?: any);
8 set(prop: any, value: any): any;
9 get(prop: any): any;
10 select(name: any, getState: any): any;
11 dispose(): void;
12 getState(): any;
13 toJSON(): any;
14}
15export declare function provideInitialState(initialState?: {}): Array<Provider>;