type alias MapSchemaAsyncRe-exportimport { type MapSchemaAsync } from "https://deno.land/x/valibot@v0.28.1/mod.ts"; Map schema async type. Type ParametersTKey extends BaseSchema | BaseSchemaAsyncTValue extends BaseSchema | BaseSchemaAsyncoptionalTOutput = MapOutput<TKey, TValue>definition: BaseSchemaAsync<MapInput<TKey, TValue>, TOutput> & { type: "map"; key: TKey; value: TValue; message: ErrorMessage | undefined; pipe: PipeAsync<MapOutput<TKey, TValue>> | undefined; }