class RegExpRouter implements Router<T>import { RegExpRouter } from "https://dotland.deno.dev/x/hono@v4.2.6/mod.ts"; ConstructorsnewRegExpRouter()Type ParametersTPropertiesoptionalmiddleware: Record<string, Record<string, HandlerWithMetadata<T>[]>>name: stringoptionalroutes: Record<string, Record<string, HandlerWithMetadata<T>[]>>MethodsprivatebuildAllMatchers(): Record<string, Matcher<T> | null>privatebuildMatcher(method: string): Matcher<T> | nulladd(method: string,path: string,handler: T,)match(method: string, path: string): Result<T>