vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
23 lines (22 loc) • 395 B
TypeScript
export interface Notification {
/**
* Icon Class
*/
iconClass?: string;
/**
* Icon Name
*/
iconName?: string;
/**
* Notification ID
*/
id: string;
/**
* Indicates whether this notification has a message.
*/
message?: string;
/**
* Indicates whether this notification has a message.
*/
subject?: string;
}