couchbase-index-manager
Version:
Manage Couchbase indexes during the CI/CD process
15 lines (14 loc) • 374 B
TypeScript
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;
}