interface TableSerCtx {
    bigNumsPresent: boolean;
    camelSnakeCache?: Record<string, string>;
    codecs: Codecs<TableCodecSerDesFns>;
    customState: Record<string, any>;
    mutatingInPlace: boolean;
    path: string[];
    rootObj: SomeDoc;
    continue(): readonly [2];
    done<T>(obj?): readonly [0, undefined | T];
    recurse<T>(obj?): readonly [1, undefined | T];
}

Hierarchy (view full)

Properties

bigNumsPresent: boolean
camelSnakeCache?: Record<string, string>
customState: Record<string, any>
mutatingInPlace: boolean
path: string[]
rootObj: SomeDoc

Methods