/** * Routing Slug Mapper * * @module routing/slug-mapper */ export type { PathCandidates, RouteParams } from "./types.js"; export { extractParams, isDynamicRoute, matchesPattern } from "./dynamic-route-matcher.js"; export { getPathCandidates, getSupportedExtensions } from "./path-candidate-generator.js"; export { getSlugFromPath, normalizeSlug, pathToSlug, slugToPath } from "./slug-normalizer.js"; //# sourceMappingURL=index.d.ts.map