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