fix(shared-operations): resolve typescript compile errors

This commit is contained in:
sbplat
2023-12-27 19:33:32 -05:00
parent 762fa850f1
commit c9c03b206c
3 changed files with 17 additions and 10 deletions

View File

@@ -2,6 +2,7 @@
import { PdfFile, RepresentationType } from "../wrappers/PdfFile";
import { Operator, Progress, oneToOne } from ".";
// @ts-expect-error
import * as pdfcpuWrapper from "#pdfcpu"; // This is updated by tsconfig.json/paths for the context (browser, node, etc.) this module is used in.
import Joi from "joi";
@@ -140,4 +141,4 @@ export class Impose extends Operator {
return result;
})
}
}
}