Persist QWord page setup in documents
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user