Interface ConverterEvents

interface ConverterEvents {
    begin: [Context];
    createDeclaration: [Context, Models.DeclarationReflection];
    createDocument: [undefined, Models.DocumentReflection];
    createParameter: [Context, Models.ParameterReflection, Node?];
    createProject: [Context, Models.ProjectReflection];
    createSignature: [
        Context,
        Models.SignatureReflection,
        (JSDocSignature | SignatureDeclaration)?,
        Signature?,
    ];
    createTypeParameter: [
        Context,
        Models.TypeParameterReflection,
        TypeParameterDeclaration?,
    ];
    end: [Context];
    resolveBegin: [Context];
    resolveEnd: [Context];
    resolveReflection: [Context, Models.Reflection];
}

Properties

begin: [Context]
createDeclaration: [Context, Models.DeclarationReflection]
createDocument: [undefined, Models.DocumentReflection]
createParameter: [Context, Models.ParameterReflection, Node?]
createProject: [Context, Models.ProjectReflection]
createSignature: [
    Context,
    Models.SignatureReflection,
    (JSDocSignature | SignatureDeclaration)?,
    Signature?,
]
createTypeParameter: [
    Context,
    Models.TypeParameterReflection,
    TypeParameterDeclaration?,
]
end: [Context]
resolveBegin: [Context]
resolveEnd: [Context]
resolveReflection: [Context, Models.Reflection]