Interface NotificationsAPI
interface NotificationsAPI { Show( title: string, message: string, type: "info" | "warning" | "error", ): void;} Methods
Show
Show(title: string, message: string, type: "info" | "warning" | "error"): void Parameters
- title: string
- message: string
- type: "info" | "warning" | "error"
Returns void