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 {