UNPKG

@azure/cosmos

Version:
18 lines 639 B
import type { ChangeFeedMode } from "./ChangeFeedMode.js"; import type { PriorityLevel } from "../../documents/PriorityLevel.js"; /** * @hidden * Internal Change Feed Iterator Options used only by ChangeFeedForEpkRange and ChangeFeedForPartitionKey. */ export interface InternalChangeFeedIteratorOptions { maxItemCount?: number; sessionToken?: string; continuationToken?: string; startTime?: Date; changeFeedMode?: ChangeFeedMode; startFromNow?: boolean; excludedLocations?: string[]; priorityLevel?: PriorityLevel; throughputBucket?: number; } //# sourceMappingURL=InternalChangeFeedOptions.d.ts.map