PresentationMerger class
Plugin for merging PowerPoint files of the same format into one file.
process(inputPath: string[], outputPath: string): Promise
Merges the PowerPoint files from the array into one file.
Parameters:
| Name | Type | Description |
|---|---|---|
| inputPath | string[] | Array of the input presentation file names. |
| outputPath | string | The output file name. |
Example
onst inputPaths = [ "presentation1.pptx", "presentation2.pptx", "presentation3.pptx" ];
await slidize.PresentationMerger.process(inputPaths, "merged_presentation.pptx");