import {IExportWriter} from '../IExporter' import {AnyOptions} from 'ts-browser-helpers' export class SimpleTextExporter implements IExportWriter { async parseAsync(obj: any, _: AnyOptions): Promise { return new Blob([obj], {type: 'text/plain'}) } }