UNPKG

react-native-permissions

Version:

An unified permissions API for React Native on iOS and Android

6 lines (5 loc) 345 B
import type { Contract } from './contract'; import type { NotificationOption, NotificationsResponse } from './types'; export declare function checkNotifications(): Promise<NotificationsResponse>; export declare function requestNotifications(options: NotificationOption[]): Promise<NotificationsResponse>; export declare const methods: Contract;