import { TransformedNode } from './transformed-node.model'; export type NodeContext = Pick, 'id' | 'data'>; /** The context object passed to node templates. */ export interface NodeTemplateContext { $implicit: NodeContext; }