Interface IndexObject

interface IndexObject {
    averageFieldLength: number[];
    dirtCount?: number;
    documentCount: number;
    documentIds: {
        [shortId: string]: any;
    };
    fieldIds: {
        [fieldName: string]: number;
    };
    fieldLength: {
        [shortId: string]: number[];
    };
    index: [string, {
        [fieldId: string]: SerializedIndexEntry;
    }][];
    nextId: number;
    serializationVersion: number;
    storedFields: {
        [shortId: string]: Record<string, unknown>;
    };
}

Properties

averageFieldLength: number[]
dirtCount?: number
documentCount: number
documentIds: {
    [shortId: string]: any;
}

Type declaration

  • [shortId: string]: any
fieldIds: {
    [fieldName: string]: number;
}

Type declaration

  • [fieldName: string]: number
fieldLength: {
    [shortId: string]: number[];
}

Type declaration

  • [shortId: string]: number[]
index: [string, {
    [fieldId: string]: SerializedIndexEntry;
}][]
nextId: number
serializationVersion: number
storedFields: {
    [shortId: string]: Record<string, unknown>;
}

Type declaration

  • [shortId: string]: Record<string, unknown>

Generated using TypeDoc