5 lines
135 B
TypeScript
5 lines
135 B
TypeScript
export declare const yesOrNo: ({ question, defaultValue, }: {
|
|
question: string;
|
|
defaultValue: boolean;
|
|
}) => Promise<boolean>;
|