ravendb
Version:
RavenDB client for Node.js
13 lines • 565 B
TypeScript
import { ICompareExchangeValue } from "./ICompareExchangeValue.js";
import { IMetadataDictionary } from "../../Session/IMetadataDictionary.js";
export declare class CompareExchangeValue<T> implements ICompareExchangeValue {
key: string;
index: number;
value: T;
changeVector: string;
private _metadataAsDictionary;
constructor(key: string, index: number, value: T, changeVector: string, metadata?: IMetadataDictionary);
get metadata(): IMetadataDictionary;
hasMetadata(): boolean;
}
//# sourceMappingURL=CompareExchangeValue.d.ts.map