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
/
globals
/
interfaces.d.ts
6 lines
(5 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
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
; }