@react-native-oh-tpl/react-native-permissions
Version:
An unified permissions API for React Native on HarmonyOS
19 lines (18 loc) • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.checkLocationAccuracy = checkLocationAccuracy;
exports.openPhotoPicker = openPhotoPicker;
exports.requestLocationAccuracy = requestLocationAccuracy;
const IOS_14 = 'Only supported by iOS 14 and above';
async function checkLocationAccuracy() {
throw new Error(IOS_14);
}
async function requestLocationAccuracy(_options) {
throw new Error(IOS_14);
}
async function openPhotoPicker() {
throw new Error(IOS_14);
}
//# sourceMappingURL=unsupportedPlatformMethods.js.map