import GRPCClient from "./GRPCClient"; import { HttpMethod } from "../../../enum/HttpMethod.enum"; import IClientInvoker from "../../../interfaces/Client/IClientInvoker"; import { InvokerOptions } from "../../../types/InvokerOptions.type"; export default class GRPCClientInvoker implements IClientInvoker { client: GRPCClient; constructor(client: GRPCClient); invoke(appId: string, methodName: string, method?: HttpMethod, data?: object, _options?: InvokerOptions): Promise; }