Interface WidgetRangeResult

interface WidgetRangeResult {
    cache: WidgetSourceCacheMetadata;
    count: number;
    degraded?: readonly DegradedReason[];
    execution: WidgetSourceExecutionMode;
    field: string;
    kind: "range";
    max: null | number;
    min: null | number;
    protocol: Protocol;
    schemaVersion: "honua.widget-source.v1";
    serverPushdown: boolean;
    sourceId: string;
}

Hierarchy (view full)

Properties

count: number
degraded?: readonly DegradedReason[]
field: string
kind
max: null | number
min: null | number
protocol: Protocol
schemaVersion
serverPushdown: boolean
sourceId: string