]> git.arvados.org - arvados.git/blob - src/models/details.ts
refs #14709-create-a-collection-from-selected-is-not-doing-what-it-should-do
[arvados.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;