tree.ts 376 B

1234567891011121314151617
  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. export interface TransformTree {
  7. // TODO
  8. }
  9. export namespace TransformTree {
  10. export interface Update {
  11. readonly tree: TransformTree,
  12. readonly rootId: number,
  13. readonly params: unknown
  14. }
  15. }