combinePDFs function

  1. @JS('combinePDFs')
JSPromise<JSAny?> combinePDFs(
  1. JSArray<JSString> inputPaths
)

JavaScript binding to combine multiple PDFs This external function calls the combinePDFs JavaScript function, passing a JSArray<JSString> of input file paths. It returns a JSPromise which resolves to the result of combining the PDFs.

Implementation

@JS('combinePDFs')
external JSPromise combinePDFs(JSArray<JSString> inputPaths);