UNPKG

@faivform/builtin

Version:

Built-in forms using @tuentyfaiv/svelte-form

6 lines (5 loc) 266 B
import type { GeneralInputProps } from "@tuentyfaiv/svelte-form"; export interface FieldInputForm<TName extends string, TExtraTypes extends string = GeneralInputProps["type"]> { readonly name: TName; readonly type: GeneralInputProps["type"] | TExtraTypes; }