import GRPCClient from "./GRPCClient"; import IClientWorkflow from "../../../interfaces/Client/IClientWorkflow"; import { WorkflowGetResponseType } from "../../../types/workflow/WorkflowGetResponse.type"; export default class GRPCClientWorkflow implements IClientWorkflow { client: GRPCClient; constructor(client: GRPCClient); get(_instanceId: string): Promise; start(_workflowName: string, _input?: any, _instanceId?: string | undefined): Promise; terminate(_instanceId: string): Promise; pause(_instanceId: string): Promise; resume(_instanceId: string): Promise; purge(_instanceId: string): Promise; raise(_instanceId: string, _eventName: string, _input?: any): Promise; }