Interface CountdownJSONPacket

Sent to clients to broadcast a countdown message, usually for counting down the start of a game.

PrintJSONPacket for all possible PrintJSON packet subtypes.

interface CountdownJSONPacket {
    cmd: "PrintJSON";
    countdown: number;
    data: JSONMessagePart[];
    type: "Countdown";
}

Properties

Properties

cmd
countdown: number

Amount of seconds remaining on the countdown.

All the textual metadata for this packet.

type

The PrintJSONPacket subtype.