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

9 lines
242 B
TypeScript

export interface YesNoParameters {
title: string;
question: string;
textYes?: string;
textNo?: string;
closeable?: boolean;
}
export declare function promptYesNo(properties: YesNoParameters): Promise<boolean | undefined>;