UNPKG
@faivform/builtin
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Built-in forms using @tuentyfaiv/svelte-form
forms.tuentyfaiv.com/extras/
TuentyFaiv/svelte-form
@faivform/builtin
/
dist
/
logic
/
typing
/
schemas
/
contact.d.ts
5 lines
(4 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
import
type
{
InferType
}
from
"yup"
;
declare
const
schema
:
import
(
"yup"
).
ObjectSchema
<
any
,
import
(
"yup"
).
AnyObject
,
any
,
""
>;
export
type
ContactValues
=
InferType
<
typeof
schema>;
export
{};