Icard/angular-clarity-master(work.../node_modules/primeng/api/message.d.ts

20 lines
377 B
TypeScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
/**
* Deines valid options for the message.
* @group Interface
*/
export interface Message {
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;
}