UNPKG

centrifuge

Version:

JavaScript client SDK for bidirectional communication with Centrifugo and Centrifuge-based server from browser, NodeJS and React Native

7 lines (6 loc) 225 B
type ByteArray = number[] | Uint8Array; /** * Apply a delta byte array to a source byte array, returning the target byte array. */ export declare function applyDelta<T extends ByteArray>(source: T, delta: T): T; export {};