Cockatrice/webclient/src/websocket/commands/session/ping.ts
Zach H c4bf9eb61c
Cleanup (#5057)
* Add Types

* Add Types
2024-06-17 00:32:36 -04:00

8 lines
328 B
TypeScript

import webClient from '../../WebClient';
export function ping(pingReceived: Function): void {
const command = webClient.protobuf.controller.Command_Ping.create();
const sc = webClient.protobuf.controller.SessionCommand.create({ '.Command_Ping.ext': command });
webClient.protobuf.sendSessionCommand(sc, pingReceived);
}