Skip to main content

INamespace interface

📖 Description​

Describes the interface that holds the node and condition blocks for a certain namespace identifier. A namespace contains all the blocks for a certain runner. The runner uses the namespace to construct new instances of the blocks.

📃 Type declaration​

interface INamespace {
  identifier: string;Readonly
  nodeBlocks: NodeBlocksNamespace;Readonly
  conditionBlocks: ConditionBlocksNamespace;Readonly
}
đŸ–ąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.

đŸ—ƒī¸ Properties​


đŸˇī¸ conditionBlocks​

Contains the ConditionBlocksNamespace instance that holds the condition blocks for the namespace.

Type​

ConditionBlocksNamespace


đŸˇī¸ identifier​

Contains the namespace identifier.

Type​

string


đŸˇī¸ nodeBlocks​

Contains the NodeBlocksNamespace instance that holds the node blocks for the namespace.

Type​

NodeBlocksNamespace