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â
đˇī¸ identifier
â
Contains the namespace identifier.
Typeâ
string
đˇī¸ nodeBlocks
â
Contains the NodeBlocksNamespace
instance that holds the node blocks for the namespace.