UNPKG

@azure/cosmos

Version:
19 lines 500 B
/** * Continuation token for change feed of entire container, or a specific Epk Range. * @internal */ export 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; } } //# sourceMappingURL=CompositeContinuationToken.js.map