Fixed Joi

This commit is contained in:
Felix Kaspar 2023-11-21 14:31:55 +01:00
parent 1d89a4c081
commit 3fb8c6c6eb
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import Joi from 'joi';
import * as Joi from 'joi';
import { PdfFileSchema } from '../wrappers/PdfFile';
export class RecordConstraint {

View File

@ -1,5 +1,5 @@
import Joi from 'joi';
import * as Joi from 'joi';
import { PDFPage } from 'pdf-lib';
import { PdfFile, RepresentationType, PdfFileSchema } from '../wrappers/PdfFile';

View File

@ -1,7 +1,7 @@
import * as PDFJS from 'pdfjs-dist';
import type { PDFDocumentProxy as PDFJSDocument } from 'pdfjs-dist/types/src/display/api';
import { PDFDocument as PDFLibDocument } from 'pdf-lib';
import Joi from 'joi';
import * as Joi from 'joi';
export enum RepresentationType {
Uint8Array,