UNPKG

@shikshalokam/sl-questionnaire

Version:
15 lines (14 loc) 418 B
export type AlertSize = 'tiny' | 'mini'; export type AlertBodyType = 'text' | 'checkbox'; export 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; }