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
/
max
/
max.validator.d.ts
10 lines
(9 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Validator
,
AbstractControl
}
from
'@angular/forms'
;
export
declare
const
MAX_VALIDATOR
:
any
;
export
declare
class
TdMaxValidator
implements
Validator
{
private
_validator;
max
:
number
;
validate
(
c
:
AbstractControl
): { [
key
:
string
]:
any
; }; }