Remove the unused UserFlags type

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-11-10 14:29:35 +01:00
parent 056c85aa72
commit 7e18ed7f29
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.
*