UNPKG

215 BTypeScriptView Raw
1export interface IStore {
2 getDefaults(): any;
3 get(key: string): any;
4 set(key: string | undefined, value: any): void;
5 onChanged(key: string, callback: (newValue: any, oldValue: any) => void): void;
6}