reconcile.ts 341 B

123456789101112
  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 { TransformTree } from '../tree/tree';
  7. import { ModelTree } from './tree';
  8. export function reconcileTree(transform: TransformTree, model: ModelTree, root?: number) {
  9. // TODO
  10. }