import { Lazy } from "../Lazy.js"; import { CompareExchangeValue } from "../Operations/CompareExchange/CompareExchangeValue.js"; import { CompareExchangeResultClass } from "../../Types/index.js"; export interface ILazyClusterTransactionOperations { getCompareExchangeValue(key: string): Lazy | null>; getCompareExchangeValue(key: string, type: CompareExchangeResultClass): Lazy | null>; getCompareExchangeValues(keys: string[]): Lazy<{ [key: string]: CompareExchangeValue | null; }>; getCompareExchangeValues(keys: string[], type: CompareExchangeResultClass): Lazy<{ [key: string]: CompareExchangeValue | null; }>; } //# sourceMappingURL=ILazyClusterTransactionOperations.d.ts.map