gauge-ts
Version:
Typescript runner for Gauge
11 lines (10 loc) • 531 B
TypeScript
import type { ExecutionInfo } from "../gen/messages_pb";
import type { HookMethod } from "../models/HookMethod";
import { HookType } from "../models/HookType";
import { type HookExectionRequest, HookExecutionProcessor } from "./HookExecutionProcessor";
export declare class ExecutionStartingProcessor extends HookExecutionProcessor {
protected hookType: HookType;
private static sleepFor;
protected getExecutionInfo(message: HookExectionRequest): ExecutionInfo;
protected getApplicableHooks(): Array<HookMethod>;
}