mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-29 11:12:23 +08:00
Merge pull request #761 from rwhepburn/master
Updated qunit.d.ts file to change bool -> boolean to align with TypeScript 0.9
This commit is contained in:
Vendored
+5
-5
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user