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:01:31 -04:00
parent 0f87f45ca8
commit 89b039b2b7

View File

@@ -7,16 +7,16 @@
/// <reference path="../jquery/jquery.d.ts"/>
interface ModalOptions {
backdrop?: bool;
keyboard?: bool;
show?: bool;
backdrop?: boolean;
keyboard?: boolean;
show?: boolean;
remote?: string;
}
interface ModalOptionsBackdropString {
backdrop?: string; // for "static"
keyboard?: bool;
show?: bool;
keyboard?: boolean;
show?: boolean;
remote?: string;
}
@@ -25,8 +25,8 @@ interface ScrollSpyOptions {
}
interface TooltipOptions {
animation?: bool;
html?: bool;
animation?: boolean;
html?: boolean;
placement?: any;
selector?: string;
title?: any;
@@ -35,8 +35,8 @@ interface TooltipOptions {
}
interface PopoverOptions {
animation?: bool;
html?: bool;
animation?: boolean;
html?: boolean;
placement?: any;
selector?: string;
trigger?: string;
@@ -47,7 +47,7 @@ interface PopoverOptions {
interface CollapseOptions {
parent?: any;
toggle?: bool;
toggle?: boolean;
}
interface CarouselOptions {