From 635cfa1fb71481dbd9e09c63dc7801dc2bf3edf2 Mon Sep 17 00:00:00 2001 From: Igor Kriklivets Date: Wed, 20 Nov 2013 14:09:27 +0400 Subject: [PATCH] The last of implicit any fixed --- phonejs/dx.phonejs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phonejs/dx.phonejs.d.ts b/phonejs/dx.phonejs.d.ts index 5755fcfc89..a3813eb565 100644 --- a/phonejs/dx.phonejs.d.ts +++ b/phonejs/dx.phonejs.d.ts @@ -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;