UNPKG

@faivform/builtin

Version:

Built-in forms using @tuentyfaiv/svelte-form

7 lines (6 loc) 357 B
import type { InferType } from "yup"; declare const schemaSignin: import("yup").ObjectSchema<any, import("yup").AnyObject, any, "">; declare const schemaSignup: import("yup").ObjectSchema<any, import("yup").AnyObject, any, "">; export type SigninValues = InferType<typeof schemaSignin>; export type SignupValues = InferType<typeof schemaSignup>; export {};