Skip to main content

IVariable interface

📖 Description​

Describes the interface that holds a variable in the builder.

📃 Type declaration​

interface IVariable {
  key: string;Readonly
  label: string;Readonly
  node: Node;Readonly
  block?: NodeBlock;ReadonlyOptional
  slot?: Slot;ReadonlyOptional
  pipe?: Slot;ReadonlyOptional
}
🖱ī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.

🗃ī¸ Properties​


🏷ī¸ block​

Reference to the block.

Type​

NodeBlock


🏷ī¸ key​

Contains the variable key.

Type​

string


🏷ī¸ label​

Human readable label for the variable.

Type​

string


🏷ī¸ node​

Reference to the node.

Type​

Node


🏷ī¸ pipe​

Reference to the slot pipe (when the variable is a pipe).

Type​

Slot


🏷ī¸ slot​

Reference to the slot.

Type​

Slot