datasquirel/client/media/imageInputFileToBase64.d.ts

9 lines
229 B
TypeScript
Raw Normal View History

2024-11-08 15:44:31 +00:00
declare function _exports({ imageInputFile, maxWidth, imagePreviewNode, }: {
imageInputFile: {
name: string;
};
maxWidth?: number;
imagePreviewNode?: HTMLImageElement;
}): Promise<any>;
export = _exports;