bar.js(1,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
bar.js(2,9): error TS2339: Property 'blah' does not exist on type '() => void'.
bar.js(2,24): error TS2339: Property 'someProp' does not exist on type '() => void'.


==== bar.js (3 errors) ====
    module.exports = function () {};
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
    exports.blah = exports.someProp;
            ~~~~
!!! error TS2339: Property 'blah' does not exist on type '() => void'.
                           ~~~~~~~~
!!! error TS2339: Property 'someProp' does not exist on type '() => void'.