import { KeyValueType } from "../KeyValue.type"; import { DaprPubSubRouteType } from "./DaprPubSubRouteType.type"; /** * BulkSubscribeOptions enlists the options for bulk subscribe **/ export type BulkSubscribeOptions = { route?: string | DaprPubSubRouteType; metadata?: KeyValueType; maxMessagesCount?: number; maxAwaitDurationMs?: number; };