context.ts 380 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 { EventDispatcher } from '../event/event';
  7. export interface TransformContext {
  8. /** An event dispatcher for executing child tasks. */
  9. dispatcher: EventDispatcher,
  10. globalContext: any
  11. // tree: ModelTree
  12. }