From 4ea2f817391f79dbcb00d673a2bd2064e7eebd85 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 14 Aug 2025 15:41:40 +0200 Subject: [PATCH] chore: remove extra exports --- packages/router/src/experimental/index.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/packages/router/src/experimental/index.ts b/packages/router/src/experimental/index.ts index 8e04a942..c52c62b8 100644 --- a/packages/router/src/experimental/index.ts +++ b/packages/router/src/experimental/index.ts @@ -23,15 +23,8 @@ export { MatcherPatternPathStatic, MatcherPatternPathStar, MatcherPatternPathCustomParams, - // custom param parsers - // TODO: find a more elegant format than having 4 variants per param type - // NOTE: I think in exported types, we should only export the generic version that can - // handle all types of params consistently + // native param parsers PARAM_PARSER_INT, - PARAM_INTEGER_SINGLE, - PARAM_NUMBER_OPTIONAL, - PARAM_NUMBER_REPEATABLE, - PARAM_NUMBER_REPEATABLE_OPTIONAL, } from './route-resolver/matchers/matcher-pattern' export type { MatcherPattern, -- 2.47.3