@umbraco-cms/backoffice
    Preparing search index...

    Interface UmbValueSummaryResolveResult<TResolved>

    interface UmbValueSummaryResolveResult<TResolved = unknown> {
        asObservable?: () => Observable<readonly TResolved[]>;
        data: readonly TResolved[];
    }

    Type Parameters

    • TResolved = unknown
    Index

    Properties

    Properties

    asObservable?: () => Observable<readonly TResolved[]>

    Optional reactive stream that re-emits when the underlying data changes. When provided, the coordinator subscribes and updates resolved values on each emission.

    data: readonly TResolved[]

    The initially resolved values, in the same order as the input.