mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-01-10 20:25:12 +01:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
|
import Exporter from "./Exporter";
|
||
|
import Mindmap from "../model/Mindmap";
|
||
|
|
||
|
|
||
|
class TextExporter implements Exporter {
|
||
|
export(mindplot: Mindmap): string {
|
||
|
return "some value";
|
||
|
}
|
||
|
}
|
||
|
export default TextExporter;
|