7 lines
285 B
TypeScript
7 lines
285 B
TypeScript
import { BodyCreator } from "../../ui/elements/Modal";
|
|
export declare function spawnYesNo(header: BodyCreator, body: BodyCreator, callback: (_: boolean) => any, properties?: {
|
|
text_yes?: string;
|
|
text_no?: string;
|
|
closeable?: boolean;
|
|
}): import("../elements/Modal").Modal;
|