import { ConfirmButton } from './confirm-button'; export class ConfirmConfig { _type: string = 'confirm'; // internal only: confirm or alert (todo: use enum) header: string = 'Confirm'; content: string = ''; buttons: Array = []; /** * If the close button shouldn't be rendered */ disableEscape: boolean = false; }