Interface FeatureFlag

FeatureFlag

Description

Defines the structure for a feature flag, used to gate access to tools based on user subscriptions or specific entitlements.

interface FeatureFlag {
    flag: string;
    description?: string;
}

Properties

Properties

flag: string

The unique string identifier for the feature flag (e.g., "CAN_USE_ADVANCED_SEARCH_TOOL").

description?: string

Optional. A human-readable description of the feature.