import { HttpMethod } from "../../enum/HttpMethod.enum"; import { InvokerOptions } from "../../types/InvokerOptions.type"; export default interface IClientInvoker { invoke(appId: string, methodName: string, method: HttpMethod, data?: object, options?: InvokerOptions): Promise; }