UNPKG

@surveycake/utils

Version:

SurveyCake Javascript Utils

12 lines (11 loc) 281 B
/** * @module helper.image */ /** * return a Promise that will resolve a new dataURL or reject an empty string. * @async */ export declare function resizeImageDataUrl(dataURL: string, { width, height }: { width: number; height: number; }): Promise<string>;