interface MapSchema implements BaseSchema<MapInput<TKey, TValue>, TOutput>import { type MapSchema } from "https://deno.land/x/valibot@v0.30.0/src/schemas/map/map.ts"; Map schema type. Type ParametersTKey extends BaseSchemaTValue extends BaseSchemaoptionalTOutput = MapOutput<TKey, TValue>Propertiestype: "map"The schema type. key: TKeyThe map key schema. value: TValueThe map value schema. message: ErrorMessage | undefinedThe error message. pipe: Pipe<MapOutput<TKey, TValue>> | undefinedThe validation and transformation pipeline.