Type alias ServerboundNotification

ServerboundNotification: {
    data: number;
    type: "Ping";
} | {
    data: number;
    type: "Pong";
} | {
    token: string;
    type: "Authenticate";
} | {
    channel: string;
    type: "BeginTyping";
} | {
    channel: string;
    type: "EndTyping";
}

Packets that are sendable to the server.