unlayer-types 1.5.63 → 1.5.65

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/embed.d.ts +1 -0
  2. package/package.json +1 -1
package/embed.d.ts CHANGED
@@ -955,6 +955,7 @@ declare module "editor/hooks/useImageUploader" {
955
955
  userId: string;
956
956
  }): Promise<void>;
957
957
  export function startUploadFlow(images: FileList | Array<File | Blob | string> | null, source: ImageSource, params: Parameters<typeof triggerImageUploadCallback>[2] & Parameters<typeof uploadFiles>[2]): Promise<void>;
958
+ export function convertImagesToFileOrBlob(images: FileList | Array<File | Blob | string | undefined | null> | undefined | null): Promise<Array<File | Blob>>;
958
959
  export class ImageMaxSizeExceededError extends Error {
959
960
  maxSize: number;
960
961
  size: number;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "unlayer-types",
3
- "version": "1.5.63",
3
+ "version": "1.5.65",
4
4
  "license": "MIT"
5
5
  }