AI Notice: Most documentation right now was auto-generated by an LLM. Handwritten documentation will be implemented over time on the road to 1.0
NotifyAPI
Notification/toast API
Signature
interface NotifyAPI {
info(message: string): void;
success(message: string): void;
warning(message: string): void;
error(message: string): void;
}Members
| Name | Type | Required | Description |
|---|---|---|---|
info | (message: string) => void | yes | — |
success | (message: string) => void | yes | — |
warning | (message: string) => void | yes | — |
error | (message: string) => void | yes | — |