mirror of
https://github.com/litruv/API-WebSocket-Bridge.git
synced 2026-07-25 03:06:03 +10:00
4 lines
208 B
TypeScript
4 lines
208 B
TypeScript
import { Packet, RawData } from "./commons.js";
|
|
declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void;
|
|
export default encodePacket;
|