123456789101112 |
- /**
- * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author David Sehnal <david.sehnal@gmail.com>
- */
- import { TransformTree } from '../tree/tree';
- import { ModelTree } from './tree';
- export function reconcileTree(transform: TransformTree, model: ModelTree, root?: number) {
- // TODO
- }
|