From ecb706d47263a1dc662b588eb1aeed6eb8733526 Mon Sep 17 00:00:00 2001 From: Sergey Gerasimov Date: Tue, 7 Jan 2014 10:43:29 +0400 Subject: [PATCH] fixed void methods specifications --- hashtable/hashtable.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hashtable/hashtable.d.ts b/hashtable/hashtable.d.ts index 323748afe..1a5ac47b9 100644 --- a/hashtable/hashtable.d.ts +++ b/hashtable/hashtable.d.ts @@ -6,13 +6,13 @@ interface IHashtable { put(key: TKey, value: TValue): TValue; - putAll(hashtable: IHashtable, conflictCallback?: (key: TKey, thisValue: TValue, value: TValue) => TValue); + putAll(hashtable: IHashtable, conflictCallback?: (key: TKey, thisValue: TValue, value: TValue) => TValue): void; get(key: TKey): TValue; containsKey(key: TKey): boolean; containsValue(value: TValue): boolean; - clear(); + clear(): void; isEmpty(): boolean; keys(): TKey[]; @@ -23,7 +23,7 @@ interface IHashtable size(): number; clone(): IHashtable; - each(callback: (key: TKey, value: TValue) => void); + each(callback: (key: TKey, value: TValue) => void): void; equals(hashtable: IHashtable): boolean; toQueryString(): string;