@tonkite/jest-tolk
Version:
<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tonkite/tonkite/main/assets/logo-dark.svg"> <img alt="tonkite logo" src="https://raw.githubusercontent.com/tonkite/tonkite/main/a
16 lines (15 loc) • 445 B
TypeScript
import { Address, Slice } from '@ton/core';
export declare class DebugReader {
protected readonly entries: string[];
protected index: number;
constructor(entries: string[]);
static fromLogs(logs: string): DebugReader;
next(): string;
protected nextAsStackItem(): string;
nextInt(): number;
nextBigInt(): bigint;
nextBool(): boolean;
nextSlice(): Slice;
nextAddress(): Address;
isEOF(): boolean;
}