Merge branch '19143-project-list-workflows'
[arvados-workbench2.git] / src / models / details.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ProjectResource } from "./project";
6 import { CollectionResource } from "./collection";
7 import { ProcessResource } from "./process";
8 import { EmptyResource } from "./empty";
9 import { CollectionFile, CollectionDirectory } from 'models/collection-file';
10 import { WorkflowResource } from 'models/workflow';
11
12 export type DetailsResource = ProjectResource | CollectionResource | ProcessResource | EmptyResource | CollectionFile | CollectionDirectory | WorkflowResource;