mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
52 lines (48 loc) • 1.21 kB
text/typescript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import * as admin from './admin';
import * as bots from './bots';
import * as channels from './channels';
import * as cloud from './cloud';
import * as errors from './errors';
import * as emojis from './emojis';
import * as files from './files';
import * as general from './general';
import * as groups from './groups';
import * as gifs from './gifs';
import * as helpers from './helpers';
import * as integrations from './integrations';
import * as jobs from './jobs';
import * as posts from './posts';
import * as preferences from './preferences';
import * as roles from './roles';
import * as schemes from './schemes';
import * as search from './search';
import * as teams from './teams';
import * as timezone from './timezone';
import * as websocket from './websocket';
import * as users from './users';
export {
admin,
bots,
channels,
cloud,
errors,
emojis,
files,
general,
groups,
gifs,
integrations,
helpers,
jobs,
posts,
preferences,
roles,
schemes,
search,
teams,
timezone,
websocket,
users,
};