import { DaprInvokerCallbackFunction } from "../../../types/DaprInvokerCallback.type"; import { InvokerListenOptionsType } from "../../../types/InvokerListenOptions.type"; import HTTPServer from "./HTTPServer"; import IServerInvoker from "../../../interfaces/Server/IServerInvoker"; export default class HTTPServerInvoker implements IServerInvoker { private readonly server; private readonly logger; constructor(server: HTTPServer); listen(methodName: string, cb: DaprInvokerCallbackFunction, options?: InvokerListenOptionsType): Promise; }