Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 31 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import * as BulkActions from './plugins/bulkactions/ToolbarActions'; |
||
2 | |||
3 | import * as ColumnManagerActions from './core/ColumnManager'; |
||
4 | |||
5 | import * as EditorActions from './plugins/editor/EditorActions'; |
||
6 | |||
7 | import * as ErrorHandlerActions from './plugins/errorhandler/ErrorHandlerActions'; // eslint-disable-line |
||
8 | |||
9 | import * as GridActions from './GridActions'; |
||
10 | |||
11 | import * as LoaderActions from './plugins/loader/LoaderActions'; |
||
12 | |||
13 | import * as MenuActions from './plugins/actioncolumn/MenuActions'; |
||
14 | |||
15 | import * as PagerActions from './plugins/pager/PagerActions'; |
||
16 | |||
17 | import * as SelectionActions from './plugins/selection/ModelActions'; |
||
18 | |||
19 | export const Actions = { |
||
20 | BulkActions, |
||
21 | ColumnManagerActions, |
||
22 | EditorActions, |
||
23 | ErrorHandlerActions, |
||
24 | GridActions, |
||
25 | LoaderActions, |
||
26 | MenuActions, |
||
27 | PagerActions, |
||
28 | SelectionActions |
||
29 | }; |
||
30 | |||
31 | export default Actions; |
||
32 |