UNPKG

uri-template-matcher

Version:
14 lines (11 loc) 451 B
/** * @fileoverview Main entry point for the URI template matcher library */ export { UriTemplateMatcher } from './matcher.js'; export { UriTemplateExpander } from './expander.js'; /** * @typedef {import('./types.js').MatchResult} MatchResult * @typedef {import('./types.js').ParsedTemplate} ParsedTemplate * @typedef {import('./types.js').TemplateExpression} TemplateExpression * @typedef {import('./types.js').TemplatePart} TemplatePart */