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