Merge pull request #7935 from backstage/freben/userflags

Remove the unused UserFlags type
This commit is contained in:
Fredrik Adelöw
2021-11-11 15:52:26 +01:00
committed by GitHub
3 changed files with 5 additions and 10 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-plugin-api': minor
---
Removed the unused `UserFlags` type.
-3
View File
@@ -799,9 +799,6 @@ export function useElementFilter<T>(
dependencies?: any[],
): T;
// @public
export type UserFlags = {};
// @public
export function useRouteRef<Optional extends boolean, Params extends AnyParams>(
routeRef: ExternalRouteRef<Params, Optional>,
@@ -61,13 +61,6 @@ export type FeatureFlagsSaveOptions = {
merge?: boolean;
};
/**
* User flags alias.
*
* @public
*/
export type UserFlags = {};
/**
* The feature flags API is used to toggle functionality to users across plugins and Backstage.
*