From 911acf3fe7ff189827a844ebe7356b4bc478ba4d Mon Sep 17 00:00:00 2001 From: Richard Hepburn Date: Mon, 8 Jul 2013 17:26:05 -0400 Subject: [PATCH] Changed bool -> boolean to align with TypeScript 0.9 Updated the bool type definitions to boolean to align with TS 0.9 and ES6 standards. --- qunit/qunit.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qunit/qunit.d.ts b/qunit/qunit.d.ts index afc2645e0..a5ff281a9 100644 --- a/qunit/qunit.d.ts +++ b/qunit/qunit.d.ts @@ -30,7 +30,7 @@ interface LogCallbackObject { /** * The boolean result of an assertion, true means passed, false means failed. */ - result: bool; + result: boolean; /** * One side of a comparision assertion. Can be undefined when ok() is used. @@ -129,11 +129,11 @@ interface TestStartCallbackObject { } interface Config { - altertitle: bool; - autostart: bool; + altertitle: boolean; + autostart: boolean; current: Object; - reorder: bool; - requireExpects: bool; + reorder: boolean; + requireExpects: boolean; testTimeout: number; urlConfig: Array; done: any;