interface TransformAction implements BaseTransformation<TInput, TOutput, never>import { type TransformAction } from "https://deno.land/x/valibot@v1.0.0-beta.5/src/index.ts"; Transform action type. Type ParametersTInputTOutputPropertiesreadonlytype: "transform"The action type. readonlyreference: transformThe action reference. readonlyoperation: (input: TInput) => TOutputThe transformation operation.