import { getDefaults } from "https://deno.land/x/valibot@v1.0.0-beta.2-to-json-schema/src/methods/index.ts";
Returns the default values of the schema.
Hint: The difference to getDefault
is that for object and tuple schemas
this function recursively returns the default values of the subschemas
instead of undefined
.
Type Parameters
TSchema extends
| ObjectWithRestSchema<ObjectEntries, BaseSchema<unknown, unknown, BaseIssue<unknown>>, ErrorMessage<ObjectWithRestIssue> | undefined>
| TupleWithRestSchema<TupleItems, BaseSchema<unknown, unknown, BaseIssue<unknown>>, ErrorMessage<TupleWithRestIssue> | undefined>
Parameters
schema: TSchema
The schema to get them from.
Returns
The default values.