UNPKG

@azure/cosmos

Version:
23 lines 680 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CompositeContinuationToken = void 0; /** * Continuation token for change feed of entire container, or a specific Epk Range. * @internal */ class CompositeContinuationToken { /** * rid of the container for which the continuation token is issued. */ rid; /** * List of Epk Ranges part of the continuation token */ Continuation; constructor(rid, Continuation) { this.rid = rid; this.Continuation = Continuation; } } exports.CompositeContinuationToken = CompositeContinuationToken; //# sourceMappingURL=CompositeContinuationToken.js.map