From 7fec1f0543d83603867f25e83f8d1a88b1081ea5 Mon Sep 17 00:00:00 2001 From: Juan Di Toro Date: Wed, 27 Mar 2024 07:02:53 +0100 Subject: [PATCH] fix: remove unusued type --- app/components/lib/filesize.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/components/lib/filesize.ts b/app/components/lib/filesize.ts index 2c46d91..f47fde4 100644 --- a/app/components/lib/filesize.ts +++ b/app/components/lib/filesize.ts @@ -1,10 +1,5 @@ // Copied from https://github.com/hustcc/filesize.js -type SPEC = { - readonly radix: number; - readonly unit: string[]; -}; - const si = { radix: 1e3, unit: ["b", "kb", "Mb", "Gb", "Tb", "Pb", "Eb", "Zb", "Yb"],