Update src/utils/exportUtils/Exporter.ts

Co-authored-by: Michael Telatynski <7t3chguy@googlemail.com>
This commit is contained in:
Jaiwanth 2021-06-29 10:19:57 +05:30 committed by GitHub
parent b506de0989
commit de6bc3f2ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {