UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

9 lines 421 B
import type { Db } from '../../db/db.js'; import type { IFeaturesReadModel } from './types/features-read-model-type.js'; export declare class FeaturesReadModel implements IFeaturesReadModel { private db; constructor(db: Db); featureExists(parent: string): Promise<boolean>; featuresInTheSameProject(featureA: string, featureB: string): Promise<boolean>; } //# sourceMappingURL=features-read-model.d.ts.map