UNPKG

devexpress-diagram

Version:

DevExpress Diagram Control

9 lines (7 loc) 272 B
import { ExportImageCommand, ExportCommandFunc } from "./ExportImageCommand"; export class ExportJpgCommand extends ExportImageCommand { getExtension() { return "jpg"; } getExportFunc(): ExportCommandFunc { return this.exporter.exportJpg; } }