From 185e737528cce7b6bd1dfe65d361c78dcb571240 Mon Sep 17 00:00:00 2001 From: BreeeZe Date: Thu, 13 Dec 2012 20:19:04 +0100 Subject: [PATCH] Added 'ieVersion' , 'isIe6' and 'isIe7' to Knockout utils definition. --- knockout/knockout-2.2.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/knockout/knockout-2.2.d.ts b/knockout/knockout-2.2.d.ts index 6a40a8112..5d9253e44 100644 --- a/knockout/knockout-2.2.d.ts +++ b/knockout/knockout-2.2.d.ts @@ -264,6 +264,10 @@ interface KnockoutUtils { stringifyJson(data: any, replacer: Function, space: string): string; postJson(urlOrForm: any, data: any, options: any): void; + ieVersion: number; + isIe6: bool; + isIe7: bool; + domNodeDisposal; }