unlayer-types 1.5.64 → 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.
- package/embed.d.ts +1 -0
- 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