Phials plugin documentation
User guide
AI Disclosure: This page was generated by an LLM and may contain inaccuracies. Hand-crafted documentation will be implemented over time on the road to 1.0

NotifyAPI

Since Plugin API: 1.0.0

Signature

interface NotifyAPI {
    info(message: string, options?: NotificationOptions): NotificationHandle;
    success(message: string, options?: NotificationOptions): NotificationHandle;
    warning(message: string, options?: NotificationOptions): NotificationHandle;
    error(message: string, options?: NotificationOptions): NotificationHandle;
    dismiss(id: string): void;
}

Members

NameTypeRequiredDescription
info(message: string, options?: NotificationOptions) => NotificationHandleyes-
success(message: string, options?: NotificationOptions) => NotificationHandleyes-
warning(message: string, options?: NotificationOptions) => NotificationHandleyes-
error(message: string, options?: NotificationOptions) => NotificationHandleyes-
dismiss(id: string) => voidyes-