Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
11
my-app/node_modules/engine.io-parser/build/cjs/index.d.ts
generated
vendored
Executable file
11
my-app/node_modules/engine.io-parser/build/cjs/index.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
/// <reference types="node" />
|
||||
import { encodePacket } from "./encodePacket.js";
|
||||
import { decodePacket } from "./decodePacket.js";
|
||||
import { Packet, PacketType, RawData, BinaryType } from "./commons.js";
|
||||
import type { TransformStream } from "node:stream/web";
|
||||
declare const encodePayload: (packets: Packet[], callback: (encodedPayload: string) => void) => void;
|
||||
declare const decodePayload: (encodedPayload: string, binaryType?: BinaryType) => Packet[];
|
||||
export declare function createPacketEncoderStream(): TransformStream<Packet, any>;
|
||||
export declare function createPacketDecoderStream(maxPayload: number, binaryType: BinaryType): TransformStream<Uint8Array, any>;
|
||||
export declare const protocol = 4;
|
||||
export { encodePacket, encodePayload, decodePacket, decodePayload, Packet, PacketType, RawData, BinaryType, };
|
Loading…
Add table
Add a link
Reference in a new issue