felicity-lims/frontend/vite/src/models/notification.ts

16 lines
338 B
TypeScript
Raw Normal View History

2021-11-12 05:30:10 +08:00
interface BaseNotification {
2021-11-28 18:42:56 +08:00
data: any;
ticks: number;
type: string;
message: string;
icon: string;
toast: boolean;
position: string;
showConfirmButton: boolean;
timer: number;
timerProgressBar: boolean;
2021-11-12 05:30:10 +08:00
}
export interface IAlert extends BaseNotification {}
export interface INotification extends BaseNotification {}