For example, the below code does not generate the correct typing definition
/**
* @module test1
*/
class One {}
export default One
exports.tag = "one"
It generates the below type description which does not include the default export
declare module 'test1' {
class One { };
export var tag: string;
}
It's missing the default export