UNPKG

validation-box

Version:

The only validation library - with flexible regex - you need.

6 lines (4 loc) 253 B
declare const validateCPF: (cpf: string) => boolean; declare const validateCNPJ: (cnpj: string) => boolean; declare const validatePhoneBR: (phone: string, requireCountryCode?: boolean) => boolean; export { validateCNPJ, validateCPF, validatePhoneBR };