import { KeyValueType } from "../KeyValue.type"; export type StateGetBulkOptions = { /** * The number of items that Dapr can retrieve in parallel. * This is used to prevent overloading the underlying state store. * Default is 10. */ parallelism?: number; /** * Metadata to be passed to get bulk operation. */ metadata?: KeyValueType; };