forked from Ivasoft/mattermost-mobile
16 lines
576 B
TypeScript
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;
|