weaviate-client
    Preparing search index...

    Type Alias VectorIndexConfigUpdateType<I>

    VectorIndexConfigUpdateType: I extends "hnsw"
        ? VectorIndexConfigHNSWUpdate
        : I extends "flat"
            ? VectorIndexConfigFlatUpdate
            : I extends "dynamic"
                ? VectorIndexConfigDynamicUpdate
                : I extends "hfresh"
                    ? VectorIndexConfigHFreshUpdate
                    : I extends string ? Record<string, any> : never

    Type Parameters

    • I