UNPKG
@recursyve/forms-frontend
Version:
beta (2.0.0-beta.4)
latest (2.0.0-beta.7)
9.0.6
9.0.5
9.0.4
9.0.3
9.0.1
9.0.0
2.0.0-beta.7
2.0.0-beta.6
2.0.0-beta.5
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.0.2
1.0.1
1.0.0
0.3.2
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.8
github.com/Recursyve/forms-frontend
Recursyve/forms-frontend
@recursyve/forms-frontend
/
src
/
interfaces
/
type-configs
/
checkbox.interface.d.ts
10 lines
(9 loc)
•
189 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
CheckboxTypeConfig
{
multi
:
boolean
;
options
:
CheckboxOption
[]; }
export
interface
CheckboxOption
{
value
:
number
;
text
:
string
;
description
:
string
; }