All files / actions index.ts

100% Statements 20/20
100% Branches 2/2
100% Functions 1/1
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 242x 2x 2x 2x 2x 2x 2x 2x   2x 2x 2x   2x 2x 2x 2x 2x 2x 2x 2x 2x    
import { AnnotationActions } from './annotations';
import { Actions as AsyncStateActions } from './asyncState';
import { EntityActions } from './entity';
import { Actions as _feedback } from './feedback';
import { Actions as _login } from './login';
import { ActionNames as _notification } from './notification';
import { ThemeActions } from './theme';
import { Actions as _tree } from './tree';
 
export * from './entity';
export * from './login';
export * from './theme';
 
export namespace ActionNames {
  export import login = _login;
  export import tree = _tree;
  export import entity = EntityActions;
  export import theme = ThemeActions;
  export import annotations = AnnotationActions;
  export import asyncState = AsyncStateActions;
  export import feedback = _feedback;
  export import notification = _notification;
}