mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-23 00:28:03 +00:00
11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
![]() |
import { IOwnerResponse } from '@datahub/data-models/types/entity/dataset/ownership';
|
||
|
import owners from '@datahub/data-models/mirage-addon/fixtures/dataset-ownership';
|
||
|
|
||
|
export const getDatasetOwnership = (): IOwnerResponse => ({
|
||
|
owners,
|
||
|
fromUpstream: false,
|
||
|
datasetUrn: '',
|
||
|
lastModified: 0,
|
||
|
actor: ''
|
||
|
});
|