Stirling-PDF/server-node/src/utils/pdf-operations.ts

16 lines
507 B
TypeScript
Raw Normal View History

import SharedOperations, { OperationsUseages } from "@stirling-pdf/shared-operations/src";
// 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";
async function impose(snapshot: any, nup: number, format: string) {
return SharedOperations.impose(snapshot, nup, format, null); // TODO change null to pdfcpuWrapper
}
const toExport: OperationsUseages = {
...SharedOperations,
impose,
}
export default toExport;