Phials developer documentation
User guide
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

NameTypeRequiredDescription
info(message: string) => voidyes
success(message: string) => voidyes
warning(message: string) => voidyes
error(message: string) => voidyes