apkt-eis/src/components/Notification/interfaces/Notification.interface.ts
Dede Fuji Abdul 275153649c first commit
2023-10-16 09:00:27 +07:00

8 lines
185 B
TypeScript

export type NotificationType = 'success' | 'info' | 'warning' | 'error';
export interface Notification {
id: string;
title?: string;
content: string;
type?: NotificationType;
}