9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
|
declare function _exports({ imageInputFile, maxWidth, imagePreviewNode, }: {
|
||
|
imageInputFile: {
|
||
|
name: string;
|
||
|
};
|
||
|
maxWidth?: number;
|
||
|
imagePreviewNode?: HTMLImageElement;
|
||
|
}): Promise<any>;
|
||
|
export = _exports;
|