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 the builder. The builder 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