unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
6 lines • 317 B
TypeScript
export interface IFeaturesReadModel {
featureExists(parent: string): Promise<boolean>;
featureExistsInProject(featureName: string, projectId: string): Promise<boolean>;
featuresInTheSameProject(featureA: string, featureB: string): Promise<boolean>;
}
//# sourceMappingURL=features-read-model-type.d.ts.map