From 8336cbfc28f42b2cc2cf32509452f7c5c014164f Mon Sep 17 00:00:00 2001 From: "Thiago F. G. Albuquerque" Date: Mon, 14 Nov 2022 15:27:46 -0300 Subject: [PATCH] `tokens` should be optional too --- types/mask.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mask.d.ts b/types/mask.d.ts index cba20c5..7f23728 100644 --- a/types/mask.d.ts +++ b/types/mask.d.ts @@ -1 +1 @@ -export default function mask(value: any, mask: any, tokens: any, masked?: boolean): string; +export default function mask(value: any, mask: any, tokens?: any, masked?: boolean): string;