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.
This commit is contained in:
Richard Hepburn 2013-07-05 13:02:27 -04:00
parent e98875bf10
commit 8dd5bcc633

View File

@ -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;