27 lines
893 B
JavaScript
27 lines
893 B
JavaScript
export var CameraSource;
|
|
(function (CameraSource) {
|
|
/**
|
|
* Prompts the user to select either the photo album or take a photo.
|
|
*/
|
|
CameraSource["Prompt"] = "PROMPT";
|
|
/**
|
|
* Take a new photo using the camera.
|
|
*/
|
|
CameraSource["Camera"] = "CAMERA";
|
|
/**
|
|
* Pick an existing photo from the gallery or photo album.
|
|
*/
|
|
CameraSource["Photos"] = "PHOTOS";
|
|
})(CameraSource || (CameraSource = {}));
|
|
export var CameraDirection;
|
|
(function (CameraDirection) {
|
|
CameraDirection["Rear"] = "REAR";
|
|
CameraDirection["Front"] = "FRONT";
|
|
})(CameraDirection || (CameraDirection = {}));
|
|
export var CameraResultType;
|
|
(function (CameraResultType) {
|
|
CameraResultType["Uri"] = "uri";
|
|
CameraResultType["Base64"] = "base64";
|
|
CameraResultType["DataUrl"] = "dataUrl";
|
|
})(CameraResultType || (CameraResultType = {}));
|
|
//# sourceMappingURL=definitions.js.map
|