Interface WidgetCountResult

interface WidgetCountResult {
    cache: WidgetSourceCacheMetadata;
    degraded?: readonly DegradedReason[];
    execution: WidgetSourceExecutionMode;
    kind: "count";
    label: string;
    protocol: Protocol;
    schemaVersion: "honua.widget-source.v1";
    serverPushdown: boolean;
    sourceId: string;
    value: number;
}

Hierarchy (view full)

Properties

degraded?: readonly DegradedReason[]
kind
label: string
protocol: Protocol
schemaVersion
serverPushdown: boolean
sourceId: string
value: number