kea-react
Version:
Componentes comunes de react
5 lines (4 loc) • 355 B
TypeScript
/**Muestra un cuadro de dialogo de si y no */
export declare function yesno(title: string, text?: string, type?: "warning" | "error" | "success" | "info"): Promise<boolean>;
/**Muestra un cuadro de dialogo con un mensaje */
export declare function message(title: string, text?: string, type?: "warning" | "error" | "success" | "info"): Promise<void>;