node-ejs-renderer/node_modules/@jsonjoy.com/util/lib/buffers/Slice.d.ts

9 lines
254 B
TypeScript
Raw Normal View History

2024-06-09 13:55:01 -04:00
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;
}