UNPKG

@mavrykdynamics/taquito-local-forging

Version:

Provide local forging functionality to be with taquito

11 lines (10 loc) 352 B
export declare class Uint8ArrayConsumer { private readonly arr; private offset; static fromHexString(hex: string): Uint8ArrayConsumer; constructor(arr: Uint8Array, offset?: number); consume(count: number): Uint8Array; get(idx: number): number; length(): number; slice(start: number, end?: number): Uint8ArrayConsumer; }