UNPKG

ravendb

Version:
21 lines 468 B
export class DeleteCompareExchangeCommandData { _index; id; changeVector; name; constructor(key, index) { this.id = key; this._index = index; } get type() { return "CompareExchangePUT"; } serialize(conventions) { return { Id: this.id, Index: this._index, Type: "CompareExchangeDELETE" }; } } //# sourceMappingURL=DeleteCompareExchangeCommandData.js.map