UNPKG

sl-questionnaire

Version:
15 lines (14 loc) 442 B
export declare type AlertSize = 'tiny' | 'mini'; export declare type AlertBodyType = 'text' | 'checkbox'; export declare type AlertFooterClass = 'single-btn' | 'double-btn' | 'double-btn-circle'; export interface AlertMeta { title?: String; size: AlertSize; bodyType: AlertBodyType; data: String; buttonClass: AlertFooterClass; acceptText: String; cancelText: String; type?: String; closeIcon?: Boolean; }