import HMSManager from '../modules/HMSManagerModule'; export type NotificationResult = { status: 'granted' | 'blocked'; settings: {}; }; export const checkNotifications = async (): Promise => { return HMSManager.checkNotifications(); };