A bot used for https://code-your-snake.codingmaster398.repl.co/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
510 B
14 lines
510 B
declare const PACKET_TYPES: any;
|
|
declare const PACKET_TYPES_REVERSE: any;
|
|
declare const ERROR_PACKET: Packet;
|
|
export { PACKET_TYPES, PACKET_TYPES_REVERSE, ERROR_PACKET };
|
|
export declare type PacketType = "open" | "close" | "ping" | "pong" | "message" | "upgrade" | "noop" | "error";
|
|
export declare type RawData = any;
|
|
export interface Packet {
|
|
type: PacketType;
|
|
options?: {
|
|
compress: boolean;
|
|
};
|
|
data?: RawData;
|
|
}
|
|
export declare type BinaryType = "nodebuffer" | "arraybuffer" | "blob";
|
|
|