@buzzr/dfs-engine
    Preparing search index...

    Type Alias DfsLegStatResult

    DfsLegStatResult:
        | {
            actual: number;
            ok: true;
            provenance: DfsProviderProvenance;
            providerId?: string;
            source: DfsLegStatSource;
            value: number;
        }
        | {
            ok: false;
            provenance: DfsProviderProvenance;
            providerId?: string;
            reason: DfsLegStatFailureReason;
            source: DfsLegStatSource;
        }