Interface ITemplateGraphNode

The base interface for all templated graph nodes.

interface ITemplateGraphNode {
    isITemplateGraphNode: true;
    templateObjectName: string;
    templateType: Type;
}

Properties

isITemplateGraphNode

Required field for ITemplateGraphNode implementations.

templateObjectName: string

The optional object for the specialization, such as a field or property name.

templateType: Type

The type that is specialized.