transforms.ts 377 B

123456789101112131415
  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 Model from './transforms/model'
  8. import * as Representation from './transforms/representation'
  9. export const StateTransforms = {
  10. Data,
  11. Model,
  12. Representation
  13. }