mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-03 11:43:20 +02:00
14 lines
307 B
TypeScript
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; |