ProgramLinkNodeThis node represents a reference to an existing ProgramNode in the Kinobi IDL.
| Attribute | Type | Description |
|---|---|---|
kind |
"programLinkNode" |
The node discriminator. |
name |
CamelCaseString |
The name of the ProgramNode we are referring to. |
importFrom |
CamelCaseString |
(Optional) The reference of the module we are importing from or "hooked" if the program is defined in the same module but manually written when rendering clients. Default to referrencing directly from the Kinobi IDL instead of using an external referrence. Note that this information is only used for rendering clients. This, it will likely be removed from the Kinobi IDL and pushed to the renderer options instead. |
This node has no children.
programLinkNode(name, importFrom?)Helper function that creates a ProgramLinkNode object from the name of the ProgramNode we are referring to.
const node = programLinkNode('myProgram');