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

9 lines
214 B
TypeScript

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