type alias MapSchemaimport { type MapSchema } from "https://deno.land/x/valibot@v0.8.0/src/schemas/map/map.ts"; Map schema type. Type ParametersTMapKey extends BaseSchemaTMapValue extends BaseSchemaoptionalTOutput = MapOutput<TMapKey, TMapValue>definition: BaseSchema<MapInput<TMapKey, TMapValue>, TOutput> & { schema: "map"; map: { key: TMapKey; value: TMapValue; }; }