class SmartRouter implements Router<T>import { SmartRouter } from "https://deno.land/x/hono@v3.6.0/mod.ts"; ConstructorsnewSmartRouter(init: Pick<SmartRouter<T>, "routers">)Type ParametersTPropertiesreadonlyactiveRoutername: stringrouters: Router<T>[]optionalroutes: [string, string, T][]Methodsadd(method: string,path: string,handler: T,)match(method: string, path: string): Result<T> | null