auto-git:

[change] src/app/editor-store.ts
This commit is contained in:
2026-05-01 18:51:13 +02:00
parent 281afbad93
commit 1da399ee20

View File

@@ -803,6 +803,14 @@ export class EditorStore {
return draftResult;
}
getProjectDocumentDraftSnapshot(): ProjectDocument {
return this.projectDocument;
}
getViewportLayoutDraftSnapshot(): ViewportLayoutState {
return this.createViewportLayoutState();
}
exportDocumentJson(): string {
return serializeProjectDocument(this.projectDocument);
}