TeaSpeak-Client/imports/shared-app/ui/modal/yes-no/Controller.d.ts

9 lines
242 B
TypeScript
Raw Normal View History

2021-05-01 17:38:36 -04:00
export interface YesNoParameters {
title: string;
question: string;
textYes?: string;
textNo?: string;
closeable?: boolean;
}
export declare function promptYesNo(properties: YesNoParameters): Promise<boolean | undefined>;