2023-11-10 23:41:31 +03:00
|
|
|
|
2023-11-13 00:09:12 +01:00
|
|
|
import SharedOperations from "@stirling-pdf/shared-operations/src";
|
2023-11-10 23:41:31 +03:00
|
|
|
|
|
|
|
// Import injected libraries here!
|
2023-11-12 20:58:40 +03:00
|
|
|
//import * as pdfcpuWrapper from "@stirling-pdf/shared-operations/wasm/pdfcpu/pdfcpu-wrapper-node.js";
|
2023-11-10 23:41:31 +03:00
|
|
|
|
2023-11-12 20:58:40 +03:00
|
|
|
/*async function impose(snapshot: any, nup: number, format: string) {
|
2023-11-10 23:41:31 +03:00
|
|
|
return SharedOperations.impose(snapshot, nup, format, pdfcpuWrapper);
|
2023-11-12 20:58:40 +03:00
|
|
|
}*/
|
2023-11-10 23:41:31 +03:00
|
|
|
|
|
|
|
export default {
|
|
|
|
...SharedOperations,
|
2023-11-12 20:58:40 +03:00
|
|
|
//impose,
|
2023-11-10 23:41:31 +03:00
|
|
|
}
|