Files
mattermost-mobile/app/notifications/index.ts
2022-08-19 16:29:15 -04:00

16 lines
576 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {NativeModules} from 'react-native';
const {Notifications} = NativeModules;
const nativeNotification: NativeNotification = {
getDeliveredNotifications: Notifications.getDeliveredNotifications,
removeChannelNotifications: Notifications.removeChannelNotifications,
removeThreadNotifications: Notifications.removeThreadNotifications,
removeServerNotifications: Notifications.removeServerNotifications,
};
export default nativeNotification;