SurfSense/surfsense_web/lib/remotion/dom-to-pptx.d.ts
2026-03-24 16:07:28 +02:00

18 lines
452 B
TypeScript

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>;
}