Interface NotificationPayload

Payload for sending a notification.

interface NotificationPayload {
    content: string;
    type?: "native" | "alert";
}

Properties

Properties

content: string

Content of the notification.

type?: "native" | "alert"

Type of the notification.