remove media type detail data source interface
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
import type { MediaTypeDetails } from '../../types.js';
|
||||
import type { DataSourceResponse } from '@umbraco-cms/backoffice/repository';
|
||||
|
||||
// TODO => Use models when they exist
|
||||
export interface MediaTypeDetailDataSource {
|
||||
createScaffold(parentId: string): Promise<DataSourceResponse<MediaTypeDetails>>;
|
||||
get(id: string): Promise<DataSourceResponse<MediaTypeDetails>>;
|
||||
insert(data: any): Promise<DataSourceResponse>;
|
||||
update(data: any): Promise<DataSourceResponse>;
|
||||
delete(id: string): Promise<DataSourceResponse>;
|
||||
}
|
||||
Reference in New Issue
Block a user