The last of implicit any fixed

This commit is contained in:
Igor Kriklivets
2013-11-20 14:09:27 +04:00
parent 93a2a37b88
commit 635cfa1fb7

View File

@@ -422,13 +422,13 @@ declare module DevExpress.framework {
export interface IStorage {
getItem(key: string): any;
setItem(key: string, value: any): void;
removeItem(key: string);
removeItem(key: string): void;
}
export class MemoryKeyValueStorage implements IStorage {
constructor();
getItem(key: string): any;
setItem(key: string, value: any): void;
removeItem(key: string);
removeItem(key: string): void;
}
export interface StateManagerOptions {
storage?: IStorage;