X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/280a875681514a5e9f707de09e39fa3e33565796..3cb71e5a3dadfaa307dc948f8933e6ca3af4df60:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index 53c62301..2b16ea25 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -22,3 +22,9 @@ export interface CollectionResource extends TrashableResource { export const getCollectionUrl = (uuid: string) => { return `/collections/${uuid}`; }; + +export enum CollectionType { + GENERAL = 'nil', + OUTPUT = 'output', + LOG = 'log', +}