@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
14 lines • 544 B
TypeScript
import type { PartitionKey } from "../../documents/index.js";
import type { FeedRange } from "./FeedRange.js";
/**
* @hidden
* Class which specifies the ChangeFeedIterator to start reading changes from a particular point of time.
*/
export declare class ChangeFeedStartFromTime {
private cfResource?;
private startTime;
constructor(startTime: Date, cfResource?: PartitionKey | FeedRange);
getCfResource(): PartitionKey | FeedRange | undefined;
getStartTime(): Date;
}
//# sourceMappingURL=ChangeFeedStartFromTime.d.ts.map