Interface UmbCollectionDataSource<CollectionItemType, FilterType>

interface UmbCollectionDataSource<
    CollectionItemType extends { entityType: string; unique: string } = any,
    FilterType extends UmbCollectionFilterModel = UmbCollectionFilterModel,
> {
    getCollection(
        filter: FilterType,
    ): Promise<UmbDataSourceResponse<UmbPagedModel<CollectionItemType>>>;
}

Type Parameters

Methods

MMNEPVFCICPMFPCPTTAAATR