class Nodeimport { Node } from "https://dotland.deno.dev/x/hono@v3.10.5/router/trie-router/node.ts"; ConstructorsnewNode(method?: string,handler?: T,children?: Record<string, Node<T>>,)Type ParametersTPropertieschildren: Record<string, Node<T>>methods: Record<string, HandlerSet<T>>[]name: stringorder: numberparams: Record<string, string>patterns: Pattern[]MethodsprivategHSets(node: Node<T>,method: string,params: Record<string, string>,): HandlerSet<T>[]insert(method: string,path: string,handler: T,): Node<T>search(method: string, path: string): [[T, Params][]]