From f38e828ae16120c397f3839a9980bb5537184b2e Mon Sep 17 00:00:00 2001 From: Erik Berdonces Bonelo Date: Fri, 8 Mar 2019 10:46:01 +0100 Subject: [PATCH] Update Type definitions Export `randomNIFWith`, `randomNIEWith` and `normalize` in type definition --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 1602d5e..7e75d0b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -43,4 +43,4 @@ declare const isNIF: (nif: string) => boolean; * Returns true if the string is a valid DNI */ declare const isValid: (dni: string) => boolean; -export { randomNIF, randomNIE, isValid, isNIF, isNIE }; +export { randomNIF, randomNIFWith, randomNIE, randomNIEWith, isValid, isNIF, isNIE, normalize };