gauge-ts
Version:
Typescript runner for Gauge
11 lines (10 loc) • 508 B
TypeScript
import type { ExecuteStepRequest, ExecutionStatusResponse } from "../gen/messages_pb";
import { ExecutionProcessor } from "./ExecutionProcessor";
import type { ParameterParsingChain } from "./params/ParameterParsingChain";
export declare class StepExecutionProcessor extends ExecutionProcessor {
private parsingChain;
constructor(parameterParsingChain: ParameterParsingChain);
process(req: ExecuteStepRequest): Promise<ExecutionStatusResponse>;
private execute;
private executionError;
}