Massive/channels.ts

14 lines
381 B
TypeScript
Raw Normal View History

2022-07-03 01:50:01 +00:00
import PushNotification, {Importance} from 'react-native-push-notification';
export const ALARM = 'alarm';
PushNotification.createChannel(
{
channelId: ALARM,
channelName: 'Alarms',
channelDescription: 'Notifications of when alarms are triggered.',
importance: Importance.HIGH,
vibrate: false,
},
created => console.log(`Created channel ${created}`),
);