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