function specialimport { special } from "https://deno.land/x/valibot@v0.5.0/src/schemas/special/index.ts"; special<TInput>(check: (input: unknown) => boolean, pipe?: Pipe<TInput>): SpecialSchema<TInput>Creates a special schema. special<TInput>(check: (input: unknown) => boolean,error?: string,pipe?: Pipe<TInput>,): SpecialSchema<TInput>Creates a special schema. Creates a special schema. Type ParametersTInputParameterscheck: (input: unknown) => booleanThe type check function. optionalpipe: Pipe<TInput>A validation and transformation pipe. ReturnsSpecialSchema<TInput>A special schema. Creates a special schema. Type ParametersTInputParameterscheck: (input: unknown) => booleanThe type check function. optionalerror: stringThe error message. optionalpipe: Pipe<TInput>A validation and transformation pipe. ReturnsSpecialSchema<TInput>A special schema.