UNPKG

ontimize-web-ngx

Version:
9 lines (8 loc) 507 B
import type { ODialogConfig } from "./o-dialog.config"; export declare abstract class ODialogBase { abstract alert(title: string, message: string, config?: ODialogConfig): any; abstract info(title: string, message: string, config?: ODialogConfig): any; abstract warn(title: string, message: string, config?: ODialogConfig): any; abstract error(title: string, message: string, config?: ODialogConfig): any; abstract confirm(title: string, message: string, config?: ODialogConfig): any; }