fix(imagepicker): add outputType option (#1098)

This commit is contained in:
Xueron Nee 2017-02-23 16:51:44 +08:00 committed by Ibby Hadeed
parent 884ce54181
commit b4b7cfa473

View File

@ -20,6 +20,11 @@ export interface ImagePickerOptions {
* Quality of images, defaults to 100
*/
quality?: number;
/**
* Output type, defaults to 0 (FILE_URI).
*/
outputType?: number;
}
/**