@jsonjoy.com/buffers
Version:
Various helper utilities for working with buffers and binary data
12 lines • 340 B
TypeScript
/**
* @deprecated Use {@link Reader} instead.
*/
export declare class Slice {
readonly uint8: Uint8Array;
readonly view: DataView;
readonly start: number;
readonly end: number;
constructor(uint8: Uint8Array, view: DataView, start: number, end: number);
subarray(): Uint8Array;
}
//# sourceMappingURL=Slice.d.ts.map