LmnToastConfiguration
Configuration for the toast service.
Presentation
type LmnToastConfiguration = {
/** Type of the toast. */
type: LmnToastType ;
/** Content of the toast. */
content: string | TemplateRef <unknown>;
/** Whether the toast is negative. */
negative?: boolean;
/** Whether the toast should be persistent or timed. */
persistency?: LmnToastPersistency ;
/** Timeout for the toast to close. In seconds */
closeTimeout?: number;
/** Position of the toast. */
position?: LmnToastPosition ;
};