Create new Component instance.
The name of this component as set by the @Component decorator.
Define the plural name of individual reflection kinds.
Define the singular name of individual reflection kinds.
Define the sort order of reflections.
Return the application / root component instance.
Return the owner of this component.
Return all option declarations emitted by this component.
Create a new GroupPlugin instance.
Inversion-of-control versions of on
. Tell this object to listen to
an event in another object... keeping track of what it's listening to
for easier unbinding later.
Inversion-of-control versions of once
.
Remove one or many callbacks. If context
is null, removes all
callbacks with that function. If callback
is null, removes all
callbacks for the event. If name
is null, removes all bound
callbacks for all events.
Bind an event to a callback
function. Passing "all"
will bind
the callback to all events fired.
Triggered when the converter has finished resolving a project.
The context object describing the current state the converter is in.
Triggered when the converter resolves a reflection.
The context object describing the current state the converter is in.
The reflection that is currently resolved.
Bind an event to only be triggered a single time. After the first time the callback is invoked, its listener will be removed. If multiple events are passed in using the space-separated syntax, the handler will fire once for each event, not once for a combination of all events.
Tell this object to stop listening to either specific events ... or to every object it's currently listening to.
Trigger one or many events, firing all bound callbacks. Callbacks are
passed the same arguments as trigger
is, apart from the event name
(unless you're listening on "all"
, which will cause your callback to
receive the true name of the event as the first argument).
Return the plural name of a internal typescript kind identifier.
The original internal typescript kind identifier.
The plural name of the given internal typescript kind identifier
Return the singular name of a internal typescript kind identifier.
The original internal typescript kind identifier.
The singular name of the given internal typescript kind identifier
Transform the internal typescript kind identifier into a human readable version.
The original typescript kind identifier.
A human readable version of the given typescript kind identifier.
Create a grouped representation of the given list of reflections.
Reflections are grouped by kind and sorted by weight and name.
The reflections that should be grouped.
An array containing all children of the given reflection grouped by their kind.
Callback used to sort reflections by weight defined by ´GroupPlugin.WEIGHTS´ and name.
The left reflection to sort.
The right reflection to sort.
The sorting weight.
Generated using TypeDoc
A handler that sorts and groups the found reflections in the resolving phase.
The handler sets the ´groups´ property of all reflections.