type alias RecordSchemaRe-exportimport { type RecordSchema } from "https://deno.land/x/valibot@v0.28.1/mod.ts"; Record schema type. Type ParametersTKey extends RecordKeyTValue extends BaseSchemaoptionalTOutput = RecordOutput<TKey, TValue>definition: BaseSchema<RecordInput<TKey, TValue>, TOutput> & { type: "record"; key: TKey; value: TValue; message: ErrorMessage | undefined; pipe: Pipe<RecordOutput<TKey, TValue>> | undefined; }