import { ITreeNode } from "../tree-node/ITreeNode"; import { IEvent } from "./IEvent"; /** * Definition of the output event. * These events are sent for output specific events ({@link EVENTTYPE_OUTPUT}). */ export interface IOutputEvent extends IEvent { /** * The new node of the output. */ newNode?: ITreeNode; /** * The old node of the output. */ oldNode?: ITreeNode; /** * The id of the output. */ outputId: string; /** * The version of the output. */ outputVersion: string; } //# sourceMappingURL=IOutputEvent.d.ts.map