method Hono.prototype.routeimport { Hono } from "https://deno.land/x/hono@v3.1.0/hono.ts"; route<SubPath extends string, SubEnv extends Env, SubSchema>(path: SubPath, app: Hono<SubEnv, SubSchema>): Hono<E, RemoveBlankRecord<MergeSchemaPath<SubSchema, SubPath> | S>, BasePath>DeprecatedUse basePath instead of route with one argument. The route with one argument has been removed in v4. route<SubPath extends string>(path: SubPath): Hono<E, RemoveBlankRecord<S>, BasePath>Type ParametersSubPath extends stringSubEnv extends EnvSubSchemaParameterspath: SubPathapp: Hono<SubEnv, SubSchema>ReturnsHono<E, RemoveBlankRecord<MergeSchemaPath<SubSchema, SubPath> | S>, BasePath>Type ParametersSubPath extends stringParameterspath: SubPathReturnsHono<E, RemoveBlankRecord<S>, BasePath>