gauge-ts
Version:
Typescript runner for Gauge
10 lines (9 loc) • 500 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 ExecutionEndingProcessor extends HookExecutionProcessor {
protected hookType: HookType;
protected getApplicableHooks(): Array<HookMethod>;
protected getExecutionInfo(message: HookExectionRequest): ExecutionInfo;
}