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