expo-notifications
Version: 
Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.
12 lines (11 loc) • 510 B
TypeScript
import { ConfigPlugin, XcodeProject } from 'expo/config-plugins';
import { NotificationsPluginProps } from './withNotifications';
export declare const withNotificationsIOS: ConfigPlugin<NotificationsPluginProps>;
/**
 * Save sound files to the Xcode project root and add them to the Xcode project.
 */
export declare function setNotificationSounds(projectRoot: string, { sounds, project, projectName, }: {
    sounds: string[];
    project: XcodeProject;
    projectName: string | undefined;
}): XcodeProject;