tree.ts 286 B

12345678910
  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 { StateTree } from './tree/immutable';
  7. import { TransientTree } from './tree/transient';
  8. export { StateTree, TransientTree }