mcbe-leveldb-reader
    Preparing search index...

    Interface ILevelDbParsedRecord

    interface ILevelDbParsedRecord {
        isDeleted?: boolean;
        key: string;
        keyBytes: Uint8Array;
        ordinal: number;
        sourceKind: "ldb" | "log";
        sourcePath?: string;
        value?: Uint8Array<ArrayBufferLike>;
    }
    Index
    isDeleted?: boolean
    key: string
    keyBytes: Uint8Array
    ordinal: number
    sourceKind: "ldb" | "log"
    sourcePath?: string
    value?: Uint8Array<ArrayBufferLike>