@hope-ui/solid
Version:
The SolidJS component library you've hoped for.
17 lines • 574 B
TypeScript
import { NotificationConfig, ShowNotificationProps } from "./notification.types";
declare function show(config: ShowNotificationProps): void;
declare function update(config: NotificationConfig & {
id: string;
}): void;
declare function hide(id: string): void;
declare function clear(): void;
declare function clearQueue(): void;
export declare const notificationService: {
show: typeof show;
update: typeof update;
hide: typeof hide;
clear: typeof clear;
clearQueue: typeof clearQueue;
};
export {};
//# sourceMappingURL=notification.service.d.ts.map