Closed joewood closed 8 years ago
If a typescript file contains a simple jsdoc single line comment processing on that file is aborted midway through. Example
export interface IFoo { /** comment */ doSomething(); }
This would generate:
declare module '__proj/mod' { export interface IFoo { }
Note the mismatch braces as processing has been aborted midway through the interface.
If a typescript file contains a simple jsdoc single line comment processing on that file is aborted midway through. Example
This would generate:
Note the mismatch braces as processing has been aborted midway through the interface.