type alias ValidationFunctionimport { type ValidationFunction } from "https://deno.land/x/hono@v3.6.0/validator/validator.ts"; Type ParametersInputTypeOutputTypeoptionalE extends Env = { }optionalP extends string = stringdefinition: (value: InputType, c: Context<E, P>) => | OutputType | Response | Promise<OutputType> | Promise<Response>