ravendb
Version:
RavenDB client for Node.js
12 lines • 506 B
TypeScript
import { ExternalReplicationBase } from "../../Replication/ExternalReplicationBase.js";
import { PullReplicationMode } from "./PullReplicationMode.js";
export interface PullReplicationAsSink extends ExternalReplicationBase {
mode: PullReplicationMode;
allowedHubToSinkPaths?: string[];
allowedSinkToHubPaths?: string[];
certificateWithPrivateKey?: string;
certificatePassword?: string;
accessName?: string;
hubName?: string;
}
//# sourceMappingURL=PullReplicationAsSink.d.ts.map