@byloth/vuert
Version:
The headless alerts, modals, notifications & popups library for Vue.js craftsmen. ℹ
7 lines (6 loc) • 370 B
TypeScript
import { RuntimeException } from "@byloth/core";
import type { AlertOptions } from "./types/alert/index.js";
export declare class AlertThrottledException<R = void, P extends Record<string, unknown> = never> extends RuntimeException {
readonly alert: AlertOptions<R, P>;
constructor(alert: AlertOptions<R, P>, message?: string, cause?: unknown, name?: string);
}