mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 07:55:07 +00:00
15 lines
404 B
TypeScript
15 lines
404 B
TypeScript
![]() |
|
||
|
import SharedOperations from "@stirling-pdf/shared-operations";
|
||
|
|
||
|
// Import injected libraries here!
|
||
|
import * as pdfcpuWrapper from "@stirling-pdf/shared-operations/wasm/pdfcpu/pdfcpu-wrapper-node.js";
|
||
|
|
||
|
async function impose(snapshot: any, nup: number, format: string) {
|
||
|
return SharedOperations.impose(snapshot, nup, format, pdfcpuWrapper);
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
...SharedOperations,
|
||
|
impose,
|
||
|
}
|