import { DaprInvokerCallbackFunction } from "../../types/DaprInvokerCallback.type"; import { InvokerListenOptionsType } from "../../types/InvokerListenOptions.type"; export default interface IServerInvoker { listen(methodName: string, cb: DaprInvokerCallbackFunction, options?: InvokerListenOptionsType): Promise; }