15 lines
361 B
TypeScript
15 lines
361 B
TypeScript
|
declare namespace _exports {
|
||
|
export { FunctionReturn };
|
||
|
}
|
||
|
declare function _exports({ imageInput, maxWidth, mimeType, }: {
|
||
|
imageInput: HTMLInputElement;
|
||
|
maxWidth?: number;
|
||
|
mimeType?: [string];
|
||
|
}): Promise<FunctionReturn>;
|
||
|
export = _exports;
|
||
|
type FunctionReturn = {
|
||
|
imageBase64: string;
|
||
|
imageBase64Full: string;
|
||
|
imageName: string;
|
||
|
};
|