From 24ca683da9ec8fbe536d243b61c4c1da850969f1 Mon Sep 17 00:00:00 2001 From: Derek Cicerone Date: Tue, 2 Jul 2013 14:57:23 -0400 Subject: [PATCH] Replace bool with boolean (for TypeScript 0.9.0+) --- zeroclipboard/zeroclipboard.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zeroclipboard/zeroclipboard.d.ts b/zeroclipboard/zeroclipboard.d.ts index 86713503e..c059d47eb 100644 --- a/zeroclipboard/zeroclipboard.d.ts +++ b/zeroclipboard/zeroclipboard.d.ts @@ -10,7 +10,7 @@ declare class ZeroClipboard { setText(newText: string); setTitle(newTitle: string); setSize(width: number, height: number); - setHandCursor(enabled: bool); + setHandCursor(enabled: boolean); version: string; moviePath: string; trustedDomains: any; @@ -18,7 +18,7 @@ declare class ZeroClipboard { hoverClass: string; activeClass: string; resetBridge(); - ready: bool; + ready: boolean; reposition(); on(eventName, func); addEventListener(eventName: string, func); @@ -29,7 +29,7 @@ declare class ZeroClipboard { unglue(elements: any); static setDefaults(options: ZeroClipboardOptions); static destroy(); - static detectFlashSupport(): bool; + static detectFlashSupport(): boolean; static dispatch(eventName: string, func); }