import { type SpecialSchemaAsync } from "https://deno.land/x/valibot@v0.24.0/src/schemas/index.ts";
Special schema async type.
Type Parameters
optional
TOutput = TInputdefinition: BaseSchemaAsync<TInput, TOutput> & { type: "special"; check: (input: unknown) => boolean | Promise<boolean>; message: ErrorMessage; pipe: PipeAsync<TInput> | undefined; }