UNPKG

ravendb

Version:
15 lines 403 B
import { throwError } from "../Exceptions/index.js"; export class UpdateTopologyParameters { node; timeoutInMs = 15_000; forceUpdate; debugTag; applicationIdentifier; constructor(node) { if (!node) { throwError("InvalidArgumentException", "Node cannot be null"); } this.node = node; } } //# sourceMappingURL=UpdateTopologyParameters.js.map