18874: Add 'services/workbench2/' from commit 'f6f88d9ca9cdeeeebfadcfe999789bfb9f69e5c6'
[arvados.git] / services / workbench2 / 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;