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

    Interface UmbReadDetailRepository<DetailModelType>

    interface UmbReadDetailRepository<DetailModelType> {
        byUnique?(
            unique: string,
        ): Promise<Observable<DetailModelType | undefined>>;
        destroy(): void;
        requestByUnique(
            unique: string,
        ): Promise<
            UmbRepositoryResponseWithAsObservable<
                DetailModelType
                | undefined,
                DetailModelType | undefined,
            >,
        >;
        requestByUniques?(
            uniques: string[],
        ): Promise<
            UmbRepositoryResponseWithAsObservable<
                DetailModelType[]
                | undefined,
                DetailModelType[] | undefined,
            >,
        >;
    }

    Type Parameters

    • DetailModelType

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods