import { PermissionResponse, PermissionStatus } from 'unimodules-permissions-interface'; const noPermissionResponse: PermissionResponse = { status: PermissionStatus.UNDETERMINED, canAskAgain: true, granted: false, expires: 'never', }; export default { get name(): string { return 'ExpoCalendar'; }, async requestCalendarPermissionsAsync(): Promise { return noPermissionResponse; }, async getCalendarPermissionsAsync(): Promise { return noPermissionResponse; }, async getRemindersPermissionsAsync(): Promise { return noPermissionResponse; }, async requestRemindersPermissionsAsync(): Promise { return noPermissionResponse; }, };