How to use the dgeni-packages/typescript/api-doc-types/ClassExportDoc.ClassExportDoc function in dgeni-packages

To help you get started, we’ve selected a few dgeni-packages examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sbb-design-systems / sbb-angular / schematics / documentation / index.js View on Github external
function isGenericTypeParameter(doc) {
    if (doc.containerDoc instanceof ClassExportDoc.ClassExportDoc) {
        return doc.containerDoc.typeParams && `<${doc.name}>` === doc.containerDoc.typeParams;
    }
    return false;
}
function isProperty(doc) {