4 lines
332 B
TypeScript
Executable file
4 lines
332 B
TypeScript
Executable file
import { Packet, RawData } from "./commons.js";
|
|
declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void;
|
|
export declare function encodePacketToBinary(packet: Packet, callback: (encodedPacket: RawData) => void): void | Promise<void>;
|
|
export { encodePacket };
|