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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user