projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 13990-collection-files-service-based-on-webdav
[arvados.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
}