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

@@ -7,7 +7,7 @@ import {
import { ApiError, CancelablePromise, ProblemDetailsModel } from '@umbraco-cms/backoffice/backend-api';
import { UmbController, UmbControllerHostInterface } from '@umbraco-cms/backoffice/controller';
import { UmbContextConsumerController } from '@umbraco-cms/backoffice/context-api';
import type { DataSourceResponse } from '@umbraco-cms/backoffice/models';
import type { DataSourceResponse } from '@umbraco-cms/backoffice/repository';
export class UmbResourceController extends UmbController {
#promise: Promise<any>;