apkt-eis/src/components/Notification/interfaces/NotificationConfig.interface.ts
2024-02-19 09:08:50 +07:00

9 lines
214 B
TypeScript
Executable File

import type { NotificationType } from "./Notification.interface";
export interface NotificationConfig {
title?: string;
content: string;
duration?: number;
autoClose?: boolean;
type?: NotificationType;
}