Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
FeatureFlagKey.ts
type FeatureFlagKey = | 'IS_FEATURENAME_ENABLED' | ...;
feature-flag.entity.ts
enum FeatureFlagKeys { IsFeatureNameEnabled = 'IS_FEATURENAME_ENABLED', ... }
@Gate({ featureFlag: 'IS_FEATURENAME_ENABLED', })
const isFeatureNameEnabled = useIsFeatureEnabled('IS_FEATURENAME_ENABLED');
core.featureFlag
IS_FEATURENAME_ENABLED
참
Was this page helpful?