* PostList optimizations on FlatList * Stop scroll to index if there is an interaction * Fix unit tests * MM-23176 Fix crash due to scrollToIndex out of range * Batch mark channel as read action * Fine tune post list * Batch actions for getting posts * Update app/utils/push_notifications.js Co-Authored-By: Miguel Alatzar <migbot@users.noreply.github.com> * Update app/actions/views/channel.js Co-Authored-By: Miguel Alatzar <migbot@users.noreply.github.com> * Pass state as arg to markAsViewedAndReadBatch Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
19 lines
475 B
JavaScript
19 lines
475 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import DeepLinkTypes from './deep_linking';
|
|
import DeviceTypes from './device';
|
|
import ListTypes from './list';
|
|
import NavigationTypes from './navigation';
|
|
import Types from './types';
|
|
import ViewTypes, {UpgradeTypes} from './view';
|
|
|
|
export {
|
|
DeepLinkTypes,
|
|
DeviceTypes,
|
|
ListTypes,
|
|
NavigationTypes,
|
|
UpgradeTypes,
|
|
Types,
|
|
ViewTypes,
|
|
};
|