Preserve QPowerPoint slide transitions in PPTX

This commit is contained in:
Курнат Андрей
2026-06-01 20:12:49 +03:00
parent d403ea7f10
commit ae82652068
5 changed files with 114 additions and 8 deletions
+3
View File
@@ -88,6 +88,7 @@ export interface Slide {
notes: string;
theme: "classic" | "ocean" | "graphite";
hidden?: boolean;
transition?: SlideTransition;
backgroundColor?: string;
titleColor?: string;
titleFontSize?: number;
@@ -98,6 +99,8 @@ export interface Slide {
images?: SlideImage[];
}
export type SlideTransition = "fade" | "push" | "wipe";
export interface SlideImage {
id: string;
src: string;