UNPKG

unleash-server

Version:

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

10 lines (9 loc) 296 B
import { Strategy } from './strategy'; import { Context } from '../context'; export default class GradualRolloutSessionIdStrategy extends Strategy { constructor(); isEnabled(parameters: { percentage: number | string; groupId?: string; }, context: Context): boolean; }