UNPKG
ng-field
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
This package ng-field lets you handle errors in your forms.
ng-field
/
lib
/
field
/
field.component.d.ts
10 lines
(9 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
OnInit
}
from
'@angular/core'
;
import
{
FormControl
}
from
'@angular/forms'
;
export
declare
class
FieldComponent
implements
OnInit
{
label
:
string
;
control
:
FormControl
;
errorRequired
:
FormControl
;
constructor
(
);
ngOnInit
():
void
; }