1 | export interface Options {
|
2 | prompt?: string | undefined;
|
3 | }
|
4 |
|
5 | export interface Callback {
|
6 | (error: Error | null, password: string): void;
|
7 | }
|
8 |
|
9 | export function getPass(cb: Callback): void;
|
10 | export function getPass(options: Options, cb: Callback): void;
|