8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import type { NotificationTypes } from './../enums/NotificationTypesEnum';
|
|
|
|
export interface INotification {
|
|
text: string;
|
|
type: NotificationTypes;
|
|
icon: string;
|
|
length: number;
|
|
}
|