2025-06-02 03:57:52 +00:00
|
|
|
/**
|
|
|
|
* Unified routing module
|
|
|
|
* Provides all routing functionality in a centralized location
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Export all types
|
|
|
|
export * from './types.js';
|
|
|
|
|
|
|
|
// Export all matchers
|
|
|
|
export * from './matchers/index.js';
|
|
|
|
|
|
|
|
// Export specificity calculator
|
|
|
|
export * from './specificity.js';
|
|
|
|
|
2025-06-03 16:21:09 +00:00
|
|
|
// Export route management
|
|
|
|
export * from './route-manager.js';
|
|
|
|
export * from './route-utils.js';
|
|
|
|
|
2025-06-02 03:57:52 +00:00
|
|
|
// Convenience re-exports
|
|
|
|
export { matchers } from './matchers/index.js';
|
|
|
|
export { RouteSpecificity } from './specificity.js';
|