UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

21 lines (20 loc) 411 B
/** * Deines valid options for the toast message. * @group Interface */ export interface ToastMessageOptions { text?: any; severity?: string; summary?: string; detail?: string; id?: any; key?: string; life?: number; sticky?: boolean; closable?: boolean; data?: any; icon?: string; contentStyleClass?: string; styleClass?: string; closeIcon?: string; }