mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-02-03 23:49:08 +08:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { CloudRunnerStepParameters } from '../options/cloud-runner-step-parameters';
|
|
|
|
export interface WorkflowInterface {
|
|
run(
|
|
// eslint-disable-next-line no-unused-vars
|
|
cloudRunnerStepState: CloudRunnerStepParameters,
|
|
): Promise<string>;
|
|
}
|