- Properties
- Methods
- Classes
Hooks represent a hooks instance, which allows to manipluate methods calls. See: hooks
EventEmitter instance, to listen for events that happen in the components. E.g. Method was called and has finished.
Array that holds instances of the implementing class.
E.g. devices in the devices component
name
{String} Method name that is used toObject.defineProperty
on the component instance.worker
{Function} Worker that handles the implementation of your function
Defines a method on
this
/class instance which is hoockable with pre/post hooks and emit events
worker
{Function} Worker that initialise the component
worker
is called like thisworker(this, cb)
, so when the initalizien is complete, "cb" is called and emits "ready". The init function is used to fill the.items
array for example.