From 89b039b2b76871a16a02522f96ecdb24c8e227d0 Mon Sep 17 00:00:00 2001 From: Richard Hepburn Date: Fri, 5 Jul 2013 13:01:31 -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. --- bootstrap/bootstrap.d.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bootstrap/bootstrap.d.ts b/bootstrap/bootstrap.d.ts index c06c08f89e..47ef378fd9 100644 --- a/bootstrap/bootstrap.d.ts +++ b/bootstrap/bootstrap.d.ts @@ -7,16 +7,16 @@ /// 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 {