UNPKG

devexpress-diagram

Version:

DevExpress Diagram Control

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