UNPKG

@configurator/ravendb

Version:
14 lines (13 loc) 446 B
import { PreventDeletionsMode } from "./PreventDeletionsMode"; import { PullReplicationMode } from "./PullReplicationMode"; export interface PullReplicationDefinition { certificates?: Record<string, string>; delayReplicationFor?: string; disabled?: boolean; mentorNode?: string; mode?: PullReplicationMode; name: string; taskId?: number; withFiltering?: boolean; preventDeletionsMode?: PreventDeletionsMode; }