interface TableDesCtx {
    camelSnakeCache?: Record<string, string>;
    codecs: Codecs<TableCodecSerDesFns>;
    customState: Record<string, any>;
    keys: null | string[];
    parsingInsertedId: boolean;
    path: string[];
    populateSparseData: boolean;
    rawDataApiResp: RawDataAPIResponse;
    recurse: never;
    rootObj: SomeDoc;
    tableSchema: ListTableColumnDefinitions;
    continue(): readonly [2];
    done<T>(obj?): readonly [0, undefined | T];
}

Hierarchy (view full)

Properties

camelSnakeCache?: Record<string, string>
customState: Record<string, any>
keys: null | string[]
parsingInsertedId: boolean
path: string[]
populateSparseData: boolean
rawDataApiResp: RawDataAPIResponse
recurse: never
rootObj: SomeDoc

Methods