function mapimport { map } from "https://deno.land/x/valibot@v0.30.0/src/schemas/map/index.ts"; map<TKey extends BaseSchema, TValue extends BaseSchema>(key: TKey,value: TValue,pipe?: Pipe<MapOutput<TKey, TValue>>,): MapSchema<TKey, TValue>Creates a map schema. map<TKey extends BaseSchema, TValue extends BaseSchema>(key: TKey,value: TValue,message?: ErrorMessage,pipe?: Pipe<MapOutput<TKey, TValue>>,): MapSchema<TKey, TValue>Creates a map schema. Creates a map schema. Type ParametersTKey extends BaseSchemaTValue extends BaseSchemaParameterskey: TKeyThe key schema. value: TValueThe value schema. optionalpipe: Pipe<MapOutput<TKey, TValue>>A validation and transformation pipe. ReturnsMapSchema<TKey, TValue>A map schema. Creates a map schema. Type ParametersTKey extends BaseSchemaTValue extends BaseSchemaParameterskey: TKeyThe key schema. value: TValueThe value schema. optionalmessage: ErrorMessageThe error message. optionalpipe: Pipe<MapOutput<TKey, TValue>>A validation and transformation pipe. ReturnsMapSchema<TKey, TValue>A map schema.