mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
|
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 {}
|