UNPKG

unleash-server

Version:

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

15 lines 311 B
export type FeatureDependencyId = { parent: string; child: string; }; export type FeatureDependency = { parent: string; child: string; enabled: true; variants?: string[]; } | { parent: string; child: string; enabled: false; }; //# sourceMappingURL=dependent-features.d.ts.map