We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test.n4js
function foo() {} const bar = 5; let baz = 3; var qux = 6;
Results in Test.d.ts
declare function foo(): void; declare const bar: 5; declare let baz: number; declare var qux: number;
The text was updated successfully, but these errors were encountered:
Merge remote-tracking branch 'origin/master' into GH-2588
71c35b8
GH-2588: Exported d.ts files contain non-public elements (#2591)
fa8bd23
* add tests * support pnpm for project discovery tests * fix bug in node_modules identification * fix project discovery and ide tests
mmews-n4
Successfully merging a pull request may close this issue.
Test.n4js
Results in
Test.d.ts
The text was updated successfully, but these errors were encountered: