Skip to content
Snippets Groups Projects
context.ts 382 B
Newer Older
David Sehnal's avatar
David Sehnal committed
/**
 * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
 *
 * @author David Sehnal <david.sehnal@gmail.com>
 */

import { EventDispatcher } from '../context/event';

export interface TransformContext {
    /** An event dispatcher for executing child tasks. */
    dispatcher: EventDispatcher,

    globalContext: any
    // tree: ModelTree
}