UNPKG

479 BJavaScriptView Raw
1import { PermissionStatus } from 'expo-modules-core';
2const noPermissionResponse = {
3 status: PermissionStatus.UNDETERMINED,
4 canAskAgain: true,
5 granted: false,
6 expires: 'never',
7};
8export default {
9 get name() {
10 return 'ExpoBrightness';
11 },
12 async getPermissionsAsync() {
13 return noPermissionResponse;
14 },
15 async requestPermissionsAsync() {
16 return noPermissionResponse;
17 },
18};
19//# sourceMappingURL=ExpoBrightness.web.js.map
\No newline at end of file