mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
The last of implicit any fixed
This commit is contained in:
4
phonejs/dx.phonejs.d.ts
vendored
4
phonejs/dx.phonejs.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user