mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-21 18:55:16 +02:00
feat: init video presentation agent
This commit is contained in:
parent
40d949b7d5
commit
b28f135a96
37 changed files with 3567 additions and 24 deletions
18
surfsense_web/lib/remotion/dom-to-pptx.d.ts
vendored
Normal file
18
surfsense_web/lib/remotion/dom-to-pptx.d.ts
vendored
Normal 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>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue