transforms.ts 547 B

123456789101112131415161718192021
  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. export const StateTransforms = {
  12. Data,
  13. Misc,
  14. Model,
  15. Volume,
  16. Representation
  17. };
  18. export type StateTransforms = typeof StateTransforms