class Nodeimport { Node } from "https://deno.land/x/hono@v3.6.0/router/trie-router/node.ts"; ConstructorsnewNode(method?: string,handler?: T,children?: Record<string, Node<T>>,)Type ParametersTPropertieschildren: Record<string, Node<T>>handlerSetCache: Record<string, HandlerSet<T>[]>methods: Record<string, HandlerSet<T>>[]name: stringorder: numberpatterns: Pattern[]MethodsprivategHSets(node: Node<T>,method: string,wildcard?: boolean,): HandlerSet<T>[]insert(method: string,path: string,handler: T,): Node<T>search(method: string, path: string): Result<T> | null