UNPKG

unleash-server

Version:

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

10 lines 543 B
import type { StrategyEvaluationResult } from '../client.js'; import type { Constraint } from '../constraint.js'; import type { Context } from '../context.js'; import { type SegmentForEvaluation, Strategy } from './strategy.js'; export default class UnknownStrategy extends Strategy { constructor(); isEnabled(): boolean; isEnabledWithConstraints(_parameters: unknown, context: Context, constraints: Iterable<Constraint>, segments: SegmentForEvaluation[]): StrategyEvaluationResult; } //# sourceMappingURL=unknown-strategy.d.ts.map