threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SimpleTextExporter.ts 273B

12345678
  1. import {IExportParser} from '../IExporter'
  2. import {AnyOptions} from 'ts-browser-helpers'
  3. export class SimpleTextExporter implements IExportParser {
  4. async parseAsync(obj: any, _: AnyOptions): Promise<Blob> {
  5. return new Blob([obj], {type: 'text/plain'})
  6. }
  7. }