class RegExpRouter implements Router<T>import { RegExpRouter } from "https://deno.land/x/hono@v2.1.0/mod.ts"; Type ParametersTPropertiesoptionalrouteData: { index: number; routes: Route<T>[]; methods: Set<string>; }MethodsprivatebuildAllMatchers(): [Record<string, AnyMatcher<T>>, Record<string, AnyMatcher<T>[]>, boolean]privatebuildMatcher(method: string): [AnyMatcher<T>, AnyMatcher<T>[], boolean]add(method: string,path: string,handler: T,)match(method: string, path: string): Result<T> | null