import { KeyValueType } from "./KeyValue.type"; /** * Options related to service invocation. */ export type InvokerOptions = { /** * Headers to include in the service invocation request. * Note, this is ignored when using the gRPC protocol. */ headers?: KeyValueType; };