* Get the JSON project data, which could be stored and loaded back with `editor.loadProjectData(json)` * @returns {Object} * @example * console.log(editor.getProjectData()); * // { pages: [...], styles: [...], ... }
()
| 552 | * // { pages: [...], styles: [...], ... } |
| 553 | */ |
| 554 | getProjectData() { |
| 555 | return this.em.storeData(); |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * Load data from the JSON project |
no test coverage detected