The name of this component as set by the @Component
decorator.
Return the application / root component instance.
Internal
commentInternal
excludeInternal
excludeInternal
excludeInternal
excludeInternal
excludeInternal
externalInternal
externalInternal
maxReturn the owner of this component.
Internal
preserveInternal
validationInternal
Adds a new resolver that the theme can use to try to figure out how to link to a symbol declared by a third-party library which is not included in the documentation.
The resolver function will be passed a declaration reference which it can attempt to resolve. If resolution fails, the function should return undefined.
Note: This will be used for both references to types declared in node_modules (in which case the
reference passed will have the moduleSource
set and the symbolReference
will navigate via .
)
and user defined {@link} tags which cannot be resolved. If the link being resolved is inferred
from a type, then no part
will be passed to the resolver function.
Compile the given source files and create a project reflection for them.
Internal
Optional
exportSymbol: SymbolInternal
Convert the given TypeScript type into its TypeDoc type reflection.
The context object describing the current state the converter is in.
The TypeDoc type reflection representing the given node and type.
Protected
initializeStops listening to an event.
the event to stop listening to.
the function to remove from the listener array.
Rest
...args: ConverterEvents[K]Starts listening to an event.
the event to listen to.
function to be called when an this event is emitted.
Rest
...args: ConverterEvents[K]optional priority to insert this hook with.
Parse the given file into a comment. Intended to be used with markdown files.
Internal
Internal
Used to determine if we should immediately bail when creating a reflection. Note: This should not be used for excludeNotDocumented because we don't have enough information at this point since comment discovery hasn't happened.
Emits an event to all currently subscribed listeners.
the event to emit.
Rest
...args: ConverterEvents[K]any arguments required for the event.
Static
Readonly
EVENT_Triggered when the converter begins converting a project. The listener will be given a Context object.
Static
Readonly
EVENT_Triggered when the converter has created a declaration reflection. The listener will be given Context and a Models.DeclarationReflection.
Static
Readonly
EVENT_Triggered when the converter has created a parameter reflection.
The listener will be given Context, Models.ParameterReflection and a ts.Node?
Static
Readonly
EVENT_Triggered when the converter has created a signature reflection.
The listener will be given Context, Models.SignatureReflection | Models.ProjectReflection the declaration,
ts.SignatureDeclaration | ts.IndexSignatureDeclaration | ts.JSDocSignature | undefined
,
and ts.Signature | undefined
. The signature will be undefined if the created signature is an index signature.
Static
Readonly
EVENT_Triggered when the converter has created a type parameter reflection. The listener will be given Context and a Models.TypeParameterReflection
Static
Readonly
EVENT_Triggered when the converter has finished converting a project. The listener will be given a Context object.
Static
Readonly
EVENT_Triggered when the converter resolves a reflection. The listener will be given Context and a Reflection.
Static
Readonly
EVENT_Triggered when the converter begins resolving a project. The listener will be given Context.
Static
Readonly
EVENT_Triggered when the converter has finished resolving a project. The listener will be given Context.
Compiles source files using TypeScript and converts compiler symbols to reflections.