meta

abstract fun meta(action: ContextBuilderDsl.() -> Unit)

Executes the given lambda (which takes a ContextBuilderDsl) to execute actions on the meta-environment.

For example, you can add a component to the meta-environment like so:

meta {
put(::MyComponent)
}