From de6bc3f2eddded08d7e8530a7fc19debc2cf9668 Mon Sep 17 00:00:00 2001 From: Jaiwanth Date: Tue, 29 Jun 2021 10:19:57 +0530 Subject: [PATCH] Update src/utils/exportUtils/Exporter.ts Co-authored-by: Michael Telatynski <7t3chguy@googlemail.com> --- src/utils/exportUtils/Exporter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/exportUtils/Exporter.ts b/src/utils/exportUtils/Exporter.ts index de9aba0ff7..e26d25f595 100644 --- a/src/utils/exportUtils/Exporter.ts +++ b/src/utils/exportUtils/Exporter.ts @@ -12,8 +12,8 @@ import * as ponyfill from "web-streams-polyfill/ponyfill" import "web-streams-polyfill/ponyfill"; // to support streams API for older browsers type FileStream = { - name: string, - stream(): ReadableStream, + name: string; + stream(): ReadableStream; }; export default abstract class Exporter {