Last date modified: 2026-Jul-14

Type Alias: FeatureConfigValue

FeatureConfigValue: boolean | [boolean, object] | undefined | null

The value type for a feature entry — shared between the embedded feature config and the full feature registry.

  • false / null / undefined → feature disabled (default)
  • true → feature enabled with default options
  • [true, options] → feature enabled with specific options
  • [false, options] → feature disabled (options ignored)
Feedback