X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c038a5258d5790773ccca89a192c8c2b7dcd86cb..95b86eb6b3184b787b570a906347ccaac32195c6:/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', +}