frontend-plugin-api: cleanup routing index exports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-12 12:07:17 +02:00
parent ae212c9169
commit 61c59aadd9
@@ -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';