Merge branch 'master' into 13853-collection-view-info-card
[arvados-workbench2.git] / src / models / workflow.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource, ResourceKind } from "./resource";
6
7 export interface WorkflowResource extends Resource {
8     kind: ResourceKind.WORKFLOW;
9     name: string;
10     description: string;
11     definition: string;
12 }