Update index.d.ts

This commit is contained in:
Adam 2018-11-30 08:14:29 +01:00 committed by GitHub
parent aa0097e633
commit 0b111f9e2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -426,9 +426,9 @@ declare class cropperjs {
/**
* Replace the image's src and rebuild the cropper.
* @param url A new image url
* @param hasSameSize If the new image has the same size with the old one, then it will not rebuilt the cropper and only update the urls of all related images.
* @param hasSameSize If the new image has the same size with the old one, then it will not rebuilt the cropper and only update the urls of all related images. (Default: false)
*/
replace(url: string, hasSameSize: boolean = false): void;
replace(url: string, hasSameSize?: boolean): void;
/**
* Enable (unfreeze) the cropper.