UNPKG

couchbase-index-manager

Version:
15 lines (14 loc) 374 B
export interface Version { major: number; minor: number; } /** * Tests for compatibility with various features, * given a cluster version from clusterCompatibility. */ export declare class FeatureVersions { /** * Tests for ALTER INDEX replica_count compatibility */ static alterIndexReplicaCount(version: Version | null | undefined): boolean; }