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