actions.ts 369 B

123456789101112131415
  1. /**
  2. * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import * as Structure from './actions/structure';
  7. import * as Volume from './actions/volume';
  8. import * as DataFormat from './actions/file';
  9. export const StateActions = {
  10. Structure,
  11. Volume,
  12. DataFormat
  13. };