From 8bd482be37fc5bdce51e9d52ed80b57d95687c3b Mon Sep 17 00:00:00 2001 From: Gurpreet Singh Baidwan Date: Mon, 2 Oct 2023 16:14:15 -0400 Subject: [PATCH] - symbol option type fix --- types/filesize.d.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/types/filesize.d.ts b/types/filesize.d.ts index 0d348b2..a5bed92 100644 --- a/types/filesize.d.ts +++ b/types/filesize.d.ts @@ -13,16 +13,7 @@ interface FileSizeOptionsBase { separator?: string; spacer?: string; standard?: 'iec' | 'jedec'; - symbols?: { - iec: { - bits: string[], - bytes: string[] - }, - jedec: { - bits: string[], - bytes: string[] - } - }; + symbols?: {}; } interface FileSizeOptionsArray extends FileSizeOptionsBase {