react-native-permissions
Version:
An unified permissions API for React Native on iOS, Android and Windows
19 lines (18 loc) • 600 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.checkLocationAccuracy = checkLocationAccuracy;
exports.openLimitedPhotoLibraryPicker = openLimitedPhotoLibraryPicker;
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 openLimitedPhotoLibraryPicker() {
throw new Error(IOS_14);
}
//# sourceMappingURL=unsupportedPlatformMethods.js.map