6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
|
|
import type { DataSourceResponse } from '@umbraco-cms/backoffice/repository';
|
||
|
|
|
||
|
|
export interface UmbCopyDataSource {
|
||
|
|
copy(unique: string, targetUnique: string): Promise<DataSourceResponse<string>>;
|
||
|
|
}
|