tiny-feature-flags
    Preparing search index...

    Interface FlagDefinition

    Defines a single feature flag. enabled sets the base state of the flag. rollout enables gradual activation (percentage of users based on userId).

    interface FlagDefinition {
        enabled: boolean;
        rollout?: number;
    }
    Index

    Properties

    Properties

    enabled: boolean
    rollout?: number