weaviate-client
    Preparing search index...

    Type Alias Node<O>

    type Node<O extends Output> = {
        batchStats: Required<BatchStats>;
        gitHash: string;
        name: string;
        shards: O extends "minimal"
        | undefined
            ? null
            : Required<NodeShardStatus>[];
        stats: O extends "minimal" | undefined ? undefined : Required<NodeStats>;
        status: "HEALTHY" | "UNHEALTHY" | "UNAVAILABLE";
        version: string;
    }

    Type Parameters

    Index

    Properties

    batchStats: Required<BatchStats>
    gitHash: string
    name: string
    shards: O extends "minimal" | undefined ? null : Required<NodeShardStatus>[]
    stats: O extends "minimal" | undefined ? undefined : Required<NodeStats>
    status: "HEALTHY" | "UNHEALTHY" | "UNAVAILABLE"
    version: string