import type { UmbDataSourceResponse } from '../../data-source-response.interface.js'; import type { UmbControllerHost } from '../../../../../libs/controller-api/index.js'; export interface UmbReadDetailDataSourceConstructor { new (host: UmbControllerHost): UmbReadDetailDataSource; } export interface UmbReadDetailDataSource { read(unique: string): Promise>; readMany?(uniques: Array): Promise>>; }