UNPKG
govuk-angular
Version:
latest (1.1.6)
1.1.6
1.1.5
1.1.4
1.1.3
1.1.0-beta.1
0.26.1
0.26.0
0.25.7
0.25.6-beta
0.25.5
0.25.3
0.25.2-beta
0.25.1
0.25.0
0.23.1-beta
0.23.0-beta
0.20.1-beta
0.20.0-beta
0.19.4-beta
0.19.2
0.19.1
0.18.2
0.18.1
0.17.16
0.17.6
0.17.4
0.17.3
0.17.1
0.16.5
0.16.3
0.16.1
0.16.0
0.9.11
0.9.10
0.9.9
0.9.8
0.9.7
0.9.4
0.9.3
0.9.1
Angular components port of govuk-frontend nunjucks macros.
govuk-angular
/
lib
/
checkboxes
/
check-option-Item.d.ts
10 lines
(9 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Hint
}
from
'../hint/hint'
;
export
interface
CheckOptionItem
{
text
:
string
;
value
:
any
;
checked
?:
boolean
;
hint
?:
string
|
Hint
;
textDivider
?:
string
;
onChange
?:
(
value
:
boolean
) =>
any
; }