Houjie
2025-07-24 1bc8f80935add7215fa98de1ab8b375b222a2046
1
2
3
4
5
6
7
8
import DecodedInformation from './DecodedInformation';
export default class BlockParsedResult {
    private readonly decodedInformation;
    private readonly finished;
    constructor(finished: boolean, decodedInformation?: DecodedInformation);
    getDecodedInformation(): DecodedInformation;
    isFinished(): boolean;
}