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

16 lines
348 B
TypeScript
Raw Normal View History

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