mirror of
https://github.com/outbackdingo/control-pane.git
synced 2026-02-09 12:20:28 +00: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;
|