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:02:40 -04:00
parent 8dd5bcc633
commit 47a6bcdfb0
+3 -3
View File
@@ -10,7 +10,7 @@ interface ToastrOptions {
/**
* Should clicking on toast dismiss it?
*/
tapToDismiss?: bool;
tapToDismiss?: boolean;
/**
* CSS class the toast element will be given
*/
@@ -22,7 +22,7 @@ interface ToastrOptions {
/**
* Should debug details be outputted to the console
*/
debug?: bool;
debug?: boolean;
/**
* Time in milliseconds the toast should take to fade in
*/
@@ -88,7 +88,7 @@ interface ToastrOptions {
/**
* Set newest toast to appear on top
**/
newestOnTop?: bool;
newestOnTop?: boolean;
/**
* Function to execute on toast click