mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
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:
Vendored
+3
-3
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user