UNPKG
@wizni/quiver
Version:
latest (1.0.0)
1.0.0
Quiver- Angular frontend development tools.
github.com/wizspark/quiver
wizspark/quiver
@wizni/quiver
/
typings
/
common
/
forms
/
validators
/
validators.d.ts
9 lines
(8 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AbstractControl
,
ValidatorFn
}
from
'@angular/forms'
;
export
declare
class
CovalentValidators
{
static
min
(
minValue
:
any
):
ValidatorFn
;
static
max
(
maxValue
:
any
):
ValidatorFn
;
static
numberRequired
(
c
:
AbstractControl
): { [
key
:
string
]:
any
; }; }