cls.js(6,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
cls.js(7,16): error TS2339: Property 'Strings' does not exist on type 'typeof Foo'.


==== cls.js (2 errors) ====
    const Strings = {
        a: "A",
        b: "B"
    };
    class Foo {}
    module.exports = Foo;
    ~~~~~~~~~~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
    module.exports.Strings = Strings;
                   ~~~~~~~
!!! error TS2339: Property 'Strings' does not exist on type 'typeof Foo'.