expo-quest-notifications
Version:
A fork of [`expo-notifications`](https://github.com/expo/expo/tree/main/packages/expo-notifications) that provides two implementations: - The default `expo-notifications` for Android and iOS platforms. - A Meta Quest-compatible implementation that uses th
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;