mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-28 03:35:56 +00:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
|
|
import { IDatasetView } from 'wherehows-web/typings/api/datasets/dataset';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Alias for a list of IDatasetView instances
|
||
|
|
* @alias
|
||
|
|
* @type Relationships
|
||
|
|
*/
|
||
|
|
type Relationships = Array<IDatasetView>;
|
||
|
|
|
||
|
|
export { Relationships };
|