move data source response interface to the repository module

This commit is contained in:
Mads Rasmussen
2023-03-21 12:50:07 +01:00
committed by Jacob Overgaard
parent ac38b1314e
commit 3029b3d5f0
16 changed files with 22 additions and 21 deletions

View File

@@ -4,7 +4,6 @@ import type {
EntityTreeItemResponseModel,
FolderTreeItemResponseModel,
PackageManifestResponseModel,
ProblemDetailsModel,
} from '@umbraco-cms/backoffice/backend-api';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -141,11 +140,6 @@ export interface DocumentBlueprintDetails {
documentTypeKey: string;
}
export interface DataSourceResponse<T = undefined> {
data?: T;
error?: ProblemDetailsModel;
}
export interface SwatchDetails {
label: string;
value: string;