From 3dcc7738f68a5ed13936696f3099014f21581221 Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Fri, 2 Jul 2021 10:53:19 +0530 Subject: [PATCH] Add missing semicolon --- src/utils/exportUtils/ZipStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/exportUtils/ZipStream.ts b/src/utils/exportUtils/ZipStream.ts index 04cd61fb06..bf8020b7b6 100644 --- a/src/utils/exportUtils/ZipStream.ts +++ b/src/utils/exportUtils/ZipStream.ts @@ -74,7 +74,7 @@ type FileLike = File & { }; type ZipObj = { - crc?: Crc32, + crc?: Crc32; uncompressedLength: number; compressedLength: number; ctrl: ReadableStreamDefaultController;