UNPKG
simple-validator-js
Version:
latest (1.8.0)
1.8.0
1.7.0
1.6.0
1.5.0
1.4.8
1.4.7
1.4.6
1.4.5
Simple form validator and autocorrector.
github.com/fermmm/simple-validator
fermmm/simple-validator
simple-validator-js
/
dist
/
library
/
presets
/
Presets.d.ts
9 lines
(8 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Validation
}
from
".."
;
import
{
CountryPresets
}
from
"./countrySpecific/CountryPresets"
;
import
{
WorldPresets
}
from
"./world/WorldPresets"
;
export
declare
class
Presets
{
world
:
WorldPresets
;
countrySpecific
:
CountryPresets
;
constructor
(
validation
:
Validation
); }