* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
41 lines
989 B
TypeScript
41 lines
989 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import * as bots from './bots';
|
|
import * as channels from './channels';
|
|
import * as emojis from './emojis';
|
|
import * as errors from './errors';
|
|
import * as files from './files';
|
|
import * as general from './general';
|
|
import * as gifs from './gifs';
|
|
import * as helpers from './helpers';
|
|
import * as integrations from './integrations';
|
|
import * as posts from './posts';
|
|
import * as preferences from './preferences';
|
|
import * as remoteCluster from './remote_cluster';
|
|
import * as roles from './roles';
|
|
import * as search from './search';
|
|
import * as teams from './teams';
|
|
import * as timezone from './timezone';
|
|
import * as users from './users';
|
|
|
|
export {
|
|
bots,
|
|
channels,
|
|
errors,
|
|
emojis,
|
|
files,
|
|
general,
|
|
gifs,
|
|
integrations,
|
|
helpers,
|
|
posts,
|
|
preferences,
|
|
roles,
|
|
search,
|
|
teams,
|
|
timezone,
|
|
users,
|
|
remoteCluster,
|
|
};
|
|
|