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

    Interface UmbValueSummaryResolver<TValue, TResolved>

    Batch resolver for transforming raw values to display values.

    Results must be returned in the same positional order as the input values array. Implement asObservable on the result to opt in to reactive updates.

    interface UmbValueSummaryResolver<TValue = unknown, TResolved = unknown> {
        destroy(): void;
        resolveValues(
            values: readonly TValue[],
        ): Promise<UmbValueSummaryResolveResult<TResolved>>;
    }

    Type Parameters

    • TValue = unknown
    • TResolved = unknown

    Hierarchy (View Summary)

    Index

    Methods