@pdfme/common 5.3.11-dev.14 → 5.3.11-dev.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfme/common",
3
- "version": "5.3.11-dev.14",
3
+ "version": "5.3.11-dev.16",
4
4
  "sideEffects": false,
5
5
  "author": "hand-dot",
6
6
  "license": "MIT",
package/src/types.ts CHANGED
@@ -152,6 +152,7 @@ export type Plugin<T = Schema> = {
152
152
  uninterruptedEditMode?: boolean;
153
153
  };
154
154
 
155
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
155
156
  export type Plugins = { [key: string]: Plugin<any> | undefined };
156
157
 
157
158
  export type Lang = z.infer<typeof Lang>;