Interface UmbReadDetailRepository<DetailModelType>

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

Type Parameters

  • DetailModelType

Hierarchy (View Summary, Expand)

Implemented by

Methods

MMNEPVFCICPMFPCPTTAAATR