UNPKG

gauge-ts

Version:
8 lines (7 loc) 435 B
import { ExecutionStatusResponse } from "../gen/messages_pb"; import type { ProtoExecutionResult } from "../gen/spec_pb"; import { type CommonFunction } from "../utils/Util"; export declare class ExecutionProcessor { protected createExecutionResponse(result: ProtoExecutionResult): ExecutionStatusResponse; protected executeMethod(instance: Record<string, unknown>, method: CommonFunction, params: unknown[]): Promise<void>; }