Circle V2 API Docs
    Preparing search index...

    Interface FeatureFlagRegistry

    Registry of feature flag keys and their value types. Consumers augment this interface to get typed autocomplete on useFeatureFlag / useFeatureFlags:

    declare module "@repo/feature-flags" {
    interface FeatureFlagRegistry {
    enableCircleV2: boolean;
    "upload-limit": number;
    }
    }

    When the registry is empty (no augmentation), flag keys fall back to string so the package works without registration.