uri-template-matcher
Version:
A lightweight URI template matcher based on RFC 6570
14 lines (11 loc) • 451 B
JavaScript
/**
* @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
*/