mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
19 lines
453 B
TypeScript
19 lines
453 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>;
|
||
|
|
}
|