unity-builder/src/model/cloud-runner/workflows/workflow-interface.ts

9 lines
254 B
TypeScript
Raw Normal View History

import { CloudRunnerStepParameters } from '../options/cloud-runner-step-parameters';
2022-02-01 02:31:20 +00:00
export interface WorkflowInterface {
run(
// eslint-disable-next-line no-unused-vars
cloudRunnerStepState: CloudRunnerStepParameters,
): Promise<string>;
2022-02-01 02:31:20 +00:00
}