mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Big replacement: bool with boolean
This commit is contained in:
Vendored
+2
-2
@@ -93,7 +93,7 @@ declare module "commander" {
|
||||
/**
|
||||
* Prompts the user for a confirmation.
|
||||
*/
|
||||
confirm(label: string, callback: (flag: bool) => any): void;
|
||||
confirm(label: string, callback: (flag: boolean) => any): void;
|
||||
|
||||
/**
|
||||
* Prompt for password with str, mask char and callback fn(val).
|
||||
@@ -201,7 +201,7 @@ declare module "commander" {
|
||||
/**
|
||||
* Prompts the user for a confirmation.
|
||||
*/
|
||||
export function confirm(label: string, callback: (flag: bool) => any): void;
|
||||
export function confirm(label: string, callback: (flag: boolean) => any): void;
|
||||
|
||||
/**
|
||||
* Prompt for password with str, mask char and callback fn(val).
|
||||
|
||||
Reference in New Issue
Block a user