// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { Resource } from "../common/api/common-resource-service"; import { ResourceKind } from "./kinds"; export interface WorkflowResource extends Resource { kind: ResourceKind.Workflow; name: string; description: string; definition: string; }