class SmartRouter implements Router<T>import { SmartRouter } from "https://dotland.deno.dev/x/hono@v3.6.0/router/smart-router/router.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