expo-calendar
Version:
Provides an API for interacting with the device's system calendars, events, reminders, and associated records.
22 lines • 614 B
JavaScript
import { PermissionStatus } from 'expo-modules-core';
const noPermissionResponse = {
status: PermissionStatus.UNDETERMINED,
canAskAgain: true,
granted: false,
expires: 'never',
};
export default {
async requestCalendarPermissionsAsync() {
return noPermissionResponse;
},
async getCalendarPermissionsAsync() {
return noPermissionResponse;
},
async getRemindersPermissionsAsync() {
return noPermissionResponse;
},
async requestRemindersPermissionsAsync() {
return noPermissionResponse;
},
};
//# sourceMappingURL=ExpoCalendar.web.js.map