source: trip-planner-front/node_modules/socket.io-parser/dist/binary.d.ts@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 673 bytes
Line 
1/**
2 * Replaces every Buffer | ArrayBuffer | Blob | File in packet with a numbered placeholder.
3 *
4 * @param {Object} packet - socket.io event packet
5 * @return {Object} with deconstructed packet and list of buffers
6 * @public
7 */
8export declare function deconstructPacket(packet: any): {
9 packet: any;
10 buffers: any[];
11};
12/**
13 * Reconstructs a binary packet from its placeholder packet and buffers
14 *
15 * @param {Object} packet - event packet with placeholders
16 * @param {Array} buffers - binary buffers to put in placeholder positions
17 * @return {Object} reconstructed packet
18 * @public
19 */
20export declare function reconstructPacket(packet: any, buffers: any): any;
Note: See TracBrowser for help on using the repository browser.