9 lines
214 B
TypeScript
Executable File
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;
|
|
} |