Interface CountdownJSONPacket
interface CountdownJSONPacket {
cmd: "PrintJSON";
countdown: number;
data: JSONMessagePart[];
type: "Countdown";
}
cmd: "PrintJSON";
countdown: number;
data: JSONMessagePart[];
type: "Countdown";
}
Properties
Readonly
cmd
cmd
Readonly
countdown
countdown: number
Amount of seconds remaining on the countdown.
Readonly
data
All the textual metadata for this packet.
Readonly
type
type
The PrintJSONPacket subtype.
Sent to clients to broadcast a countdown message, usually for counting down the start of a game.
See
PrintJSONPacket for all possible
PrintJSON
packet subtypes.