UNPKG

expo-notifications

Version:

Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.

10 lines 493 B
import { NotificationChannel } from './NotificationChannelManager.types'; /** * Fetches information about all known notification channels. * @return A Promise which resolves to an array of channels. On platforms that do not support notification channels, * it will always resolve to an empty array. * @platform android * @header channels */ export default function getNotificationChannelsAsync(): Promise<NotificationChannel[]>; //# sourceMappingURL=getNotificationChannelsAsync.d.ts.map