Interface NotificationAction

interface NotificationAction {
    data: {
        message: string;
        type: string;
    };
    type: "notification";
}

Hierarchy (view full)

Properties

Properties

data: {
    message: string;
    type: string;
}

Type declaration

  • message: string
  • type: string
type: "notification"