16583: Add "Intermediate" to collection type filters
[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
11 export type DetailsResource = ProjectResource | CollectionResource | ProcessResource | EmptyResource | CollectionFile | CollectionDirectory;