Type alias VectorIndexConfigDymamicUpdate

VectorIndexConfigDymamicUpdate: RecursivePartial<Omit<VectorIndexConfigDynamic, "hnsw" | "flat">> & {
    flat?: VectorIndexConfigFlatUpdate;
    hnsw?: VectorIndexConfigHNSWUpdate;
}

Type declaration