Merge branch 'master' into 13703-data-explorer-and-contents-api
[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 } from "../common/api/common-resource-service";
6 import { ResourceKind } from "./kinds";
7
8 export interface WorkflowResource extends Resource {
9     kind: ResourceKind.Workflow;
10     name: string;
11     description: string;
12     definition: string;
13 }