tsd-jsdoc
tsd-jsdoc copied to clipboard
Support for Arrow Functions
Currently, arrow functions expressions are interpreted as var.
export const myFunc = () => {} turns into declare var myFunc : any; when it should resolve to declare function myFunc (): void;
PRs welcome!