transforms.ts 603 B

1234567891011121314151617181920212223
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import * as Data from './transforms/data';
  7. import * as Misc from './transforms/misc';
  8. import * as Model from './transforms/model';
  9. import * as Volume from './transforms/volume';
  10. import * as Representation from './transforms/representation';
  11. import * as Shape from './transforms/shape';
  12. export const StateTransforms = {
  13. Data,
  14. Misc,
  15. Model,
  16. Volume,
  17. Representation,
  18. Shape
  19. };
  20. export type StateTransforms = typeof StateTransforms