@pdfme/converter 5.3.11-dev.2 → 5.3.11-dev.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  import type { ImageType } from './types.js';
2
- export interface Img2PdfOptions {
2
+ interface Img2PdfOptions {
3
3
  scale?: number;
4
4
  imageType?: ImageType;
5
5
  }
6
6
  export declare function img2pdf(imgs: ArrayBuffer[], options?: Img2PdfOptions): Promise<ArrayBuffer>;
7
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/converter",
3
- "version": "5.3.11-dev.2",
3
+ "version": "5.3.11-dev.20",
4
4
  "sideEffects": false,
5
5
  "author": "hand-dot",
6
6
  "license": "MIT",
@@ -38,13 +38,13 @@
38
38
  "build:cjs": "tsc -p tsconfig.cjs.json",
39
39
  "build:esm": "tsc -p tsconfig.esm.json",
40
40
  "clean": "rimraf dist",
41
- "lint": "eslint --ext .ts src --config eslint.config.mjs --no-error-on-unmatched-pattern",
41
+ "lint": "eslint --ext .ts src --config eslint.config.mjs",
42
42
  "test": "jest",
43
43
  "prune": "ts-prune src",
44
44
  "prettier": "prettier --write 'src/**/*.ts'"
45
45
  },
46
46
  "dependencies": {
47
- "@pdfme/common": "*",
47
+ "@pdfme/common": "file:../common",
48
48
  "@pdfme/pdf-lib": "*",
49
49
  "pdfjs-dist": "^3.11.174"
50
50
  },
package/src/img2pdf.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { PDFDocument } from '@pdfme/pdf-lib';
2
2
  import type { ImageType } from './types.js';
3
3
 
4
- export interface Img2PdfOptions {
4
+ interface Img2PdfOptions {
5
5
  scale?: number;
6
6
  imageType?: ImageType;
7
7
  }