Persist QWord page setup in documents

This commit is contained in:
Курнат Андрей
2026-06-04 21:35:37 +03:00
parent c1f8162afd
commit e5cd922f7d
4 changed files with 89 additions and 16 deletions
+11
View File
@@ -1,10 +1,21 @@
export type AppId = "word" | "sheets" | "slides" | "mail";
export type WordPageSizeId = "a4" | "letter";
export type WordPageOrientation = "portrait" | "landscape";
export type WordPageMarginPreset = "normal" | "narrow" | "wide";
export interface WordPageSetup {
size: WordPageSizeId;
orientation: WordPageOrientation;
marginPreset: WordPageMarginPreset;
}
export interface WordDocument {
id: string;
title: string;
updatedAt: string;
html: string;
pageSetup?: WordPageSetup;
}
export interface Workbook {