import {IExportWriter} from '../IExporter' export class SimpleJSONExporter implements IExportWriter { async parseAsync(obj: any, {jsonSpaces = 2}): Promise { return new Blob([JSON.stringify(obj, null, jsonSpaces)], {type: 'application/json'}) } }