From 61c59aadd9c9fb330affdc3bfeec130f446871f7 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 12 Oct 2023 12:07:17 +0200 Subject: [PATCH] frontend-plugin-api: cleanup routing index exports Signed-off-by: Patrik Oldsberg --- .../frontend-plugin-api/src/routing/index.ts | 28 ++++++------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/packages/frontend-plugin-api/src/routing/index.ts b/packages/frontend-plugin-api/src/routing/index.ts index 01d69cd4b0..d262bbed58 100644 --- a/packages/frontend-plugin-api/src/routing/index.ts +++ b/packages/frontend-plugin-api/src/routing/index.ts @@ -14,24 +14,12 @@ * limitations under the License. */ -export type { - AnyParams, - RouteRef, - SubRouteRef, - ExternalRouteRef, - OptionalParams, - ParamKeys, - RouteFunc, -} from './types'; -export { createRouteRef } from './RouteRef'; -export { createSubRouteRef } from './SubRouteRef'; -export type { - MakeSubRouteRef, - MergeParams, - ParamNames, - ParamPart, - PathParams, -} from './SubRouteRef'; -export { createExternalRouteRef } from './ExternalRouteRef'; -export { useRouteRef } from './useRouteRef'; +export type { AnyRouteParams } from './types'; +export { createRouteRef, type RouteRef } from './RouteRef'; +export { createSubRouteRef, type SubRouteRef } from './SubRouteRef'; +export { + createExternalRouteRef, + type ExternalRouteRef, +} from './ExternalRouteRef'; +export { useRouteRef, type RouteFunc } from './useRouteRef'; export { useRouteRefParams } from './useRouteRefParams';