feat: init video presentation agent

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-03-21 22:13:41 -07:00
parent 40d949b7d5
commit b28f135a96
37 changed files with 3567 additions and 24 deletions

View file

@ -0,0 +1,18 @@
declare module "dom-to-pptx" {
interface ExportOptions {
fileName?: string;
autoEmbedFonts?: boolean;
fonts?: Array<{ name: string; url: string }>;
skipDownload?: boolean;
svgAsVector?: boolean;
listConfig?: {
color?: string;
spacing?: { before?: number; after?: number };
};
}
export function exportToPptx(
elementOrSelector: string | HTMLElement | Array<string | HTMLElement>,
options?: ExportOptions,
): Promise<Blob>;
}