UNPKG

@azure/cosmos

Version:
10 lines 327 B
/** * Represents the change feed policy configuration for a container in the Azure Cosmos DB service. */ export class ChangeFeedPolicy { retentionDuration; constructor(retentionDuration) { this.retentionDuration = retentionDuration.getRetentionInMinutes(); } } //# sourceMappingURL=ChangeFeedPolicy.js.map