@ribajs/bs5
Version:
Bootstrap 5 module for Riba.js
10 lines (9 loc) • 327 B
TypeScript
import type { NotificationEventBinderData } from "./notification-event-binder-data.js";
export declare abstract class Notification implements NotificationEventBinderData {
type: string;
title?: string;
channel?: string;
$event?: CustomEvent;
$context?: any;
constructor(type: string, title?: string);
}