Merge pull request #32061 from elaine-mattos/feat/add-description-plugin-feature-flags

feat(core-plugin-api): add optional description to plugin feature flags
This commit is contained in:
Andre Wanlin
2026-03-07 12:47:26 -06:00
committed by GitHub
9 changed files with 34 additions and 2 deletions
@@ -1279,6 +1279,7 @@ export type FeatureFlag = {
// @public
export type FeatureFlagConfig = {
name: string;
description?: string;
};
// @public
@@ -29,6 +29,8 @@ import { FrontendPlugin } from './createFrontendPlugin';
export type FeatureFlagConfig = {
/** Feature flag name */
name: string;
/** Feature flag description */
description?: string;
};
/** @public */