j-templates 6.0.1 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Node/nodeRef.types.d.ts +1 -1
- package/package.json +1 -1
package/Node/nodeRef.types.d.ts
CHANGED
|
@@ -16,4 +16,4 @@ export interface INodeRefBase {
|
|
|
16
16
|
export interface INodeRef extends INodeRefBase {
|
|
17
17
|
type: NodeRefType.NodeRef;
|
|
18
18
|
}
|
|
19
|
-
export type NodeRefTypes = INodeRef | IBoundNode | IElementNode<
|
|
19
|
+
export type NodeRefTypes = INodeRef | IBoundNode | IElementNode<any> | IComponentNode<any, any, any>;
|