Paulo Gustavo Veiga 717f4e023b Add first SVG test
2021-12-29 20:00:34 -08:00

14 lines
307 B
TypeScript

import Exporter from "./Exporter";
import Mindmap from "../model/Mindmap";
class FreemindExporter implements Exporter {
mindplot: Mindmap;
constructor(mindplot: Mindmap) {
this.mindplot = mindplot;
}
export(): string {
return "TBI";
}
}
export default FreemindExporter;