ui-framework-jps
Version:
A simple UI framework for state management and UI components
8 lines (7 loc) • 367 B
TypeScript
import { Notification } from './Notification';
import { NotificationManager } from "./NotificationManager";
import { NotificationContent } from "./NotificationTypes";
export declare class BootstrapNotification extends Notification {
constructor(notificationManager: NotificationManager);
show(content: NotificationContent, topOffset?: number): HTMLElement;
}