Open Zvicii opened 2 years ago
My testing still has correct output. Do you have a small project where this can be reproduced?
It seems that if I add extra interface declaration, it would stop working.
import ev from 'events';
/**
* Documentation for the Dog class.
* @noInheritDoc
*/
export declare interface Test {
on(event: 'event', listener: () => void): this;
}
/**
* Documentation for the Dog class.
* @noInheritDoc
*/
export class Test extends ev.EventEmitter {
constructor() {
super();
}
}
command:
output: