From 8dd5bcc633e0706bdd04448c50abb1c5fcaadc41 Mon Sep 17 00:00:00 2001 From: Richard Hepburn Date: Fri, 5 Jul 2013 13:02:27 -0400 Subject: [PATCH] Changed bool -> boolean to align with TypeScript 0.9 Updated bool type declarations to boolean to align with the ES6 standard now supported in TS 0.9. --- numeraljs/numeraljs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeraljs/numeraljs.d.ts b/numeraljs/numeraljs.d.ts index 25e540677b..e680806d12 100644 --- a/numeraljs/numeraljs.d.ts +++ b/numeraljs/numeraljs.d.ts @@ -23,7 +23,7 @@ interface NumeralJSLanguage { interface Numeral { (value?: any): Numeral; version: string; - isNumeral: bool; + isNumeral: boolean; language(key: string, values?: NumeralJSLanguage): Numeral; zeroFormat(format: string): string; clone(): Numeral;