ui-framework-jps
Version:
A simple UI framework for state management and UI components
11 lines (10 loc) • 436 B
TypeScript
import { NotificationManager } from "./NotificationManager";
import { NotificationContent } from "./NotificationTypes";
export declare abstract class Notification {
protected notificationManager: NotificationManager;
protected containerId: string;
protected id: string;
protected constructor(notificationManager: NotificationManager);
getId(): string;
abstract show(content: NotificationContent): HTMLElement;
}