Interface NotificationSocketMessage

interface NotificationSocketMessage {
    data: {
        icon: string;
        message: string;
        time: number;
        title: string;
    };
    error: boolean;
    event: NOTIFICATION;
}

Hierarchy (view full)

Properties

Properties

data: {
    icon: string;
    message: string;
    time: number;
    title: string;
}
error: boolean