This commit is contained in:
metacryst
2026-01-09 11:14:27 -06:00
parent cf03c95664
commit 637c9e4674
2149 changed files with 527743 additions and 0 deletions

27
node_modules/@capacitor/camera/dist/esm/definitions.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
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