Add QPowerPoint slide size support

This commit is contained in:
Курнат Андрей
2026-06-04 22:24:33 +03:00
parent 5dfe97013d
commit 5487d04cca
7 changed files with 158 additions and 30 deletions
+3
View File
@@ -97,11 +97,14 @@ export interface SheetChart {
valueRange: string;
}
export type SlideSizeId = "wide" | "standard";
export interface SlideDeck {
id: string;
title: string;
updatedAt: string;
activeSlideId: string;
slideSize?: SlideSizeId;
slides: Slide[];
}