class PatternRouter implements Router<T>import { PatternRouter } from "https://deno.land/x/hono@v3.7.1/router/pattern-router/router.ts"; Type ParametersTPropertiesprivatedNames: Record<string, number>privateroutes: Route<T>[]name: stringMethodsadd(method: string,path: string,handler: T,)match(method: string, path: string): Result<T> | null