tests/cases/conformance/jsdoc/declarations/file2.js(12,31): error TS2694: Namespace 'myTypes' has no exported member 'typeC'.


==== tests/cases/conformance/jsdoc/declarations/file2.js (1 errors) ====
    const {myTypes} = require('./file.js');
    
    /**
     * @namespace testFnTypes
     * @global
     * @type {Object<string,*>}
     */
    const testFnTypes = {
        // SOME PROPS HERE
    };
    
    /** @typedef {boolean|myTypes.typeC} testFnTypes.input */
                                  ~~~~~
!!! error TS2694: Namespace 'myTypes' has no exported member 'typeC'.
    
    /**
     * @function testFn
     * @description A test function.
     * @param {testFnTypes.input} input - Input.
     * @returns {number|null} Result.
     */
    function testFn(input) {
        if (typeof input === 'number') {
            return 2 * input;
        } else {
            return null;
        }
    }
    
    module.exports = {testFn, testFnTypes};
==== tests/cases/conformance/jsdoc/declarations/file.js (0 errors) ====
    /**
     * @namespace myTypes
     * @global
     * @type {Object<string,*>}
     */
    const myTypes = {
        // SOME PROPS HERE
    };
    
    /** @typedef {string|RegExp|Array<string|RegExp>} myTypes.typeA */
    
    /**
     * @typedef myTypes.typeB
     * @property {myTypes.typeA}    prop1 - Prop 1.
     * @property {string}           prop2 - Prop 2.
     */
    
    /** @typedef {myTypes.typeB|Function} myTypes.typeC */
    
    exports.myTypes = myTypes;