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
We have an unexported interface declaration in one of our namespaces:
export namespace foo { interface Bar { name: string; } export interface BarEx extends Bar { score: number; } }
This results in the following API report:
// @public (undocumented) export namespace foo { // (undocumented) export interface Bar { // (undocumented) name: string; } // (undocumented) export interface BarEx extends Bar { // (undocumented) score: number; } {}; }
Notice the empty {}; line at the end. Exporting the interface Bar makes it go away.
{};
Bar
See above.
Please answer these questions to help us investigate your issue more quickly:
@microsoft/api-extractor
node -v
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
We have an unexported interface declaration in one of our namespaces:
This results in the following API report:
Notice the empty
{};
line at the end. Exporting the interfaceBar
makes it go away.Repro steps
See above.
Standard questions
Please answer these questions to help us investigate your issue more quickly:
@microsoft/api-extractor
version?node -v
)?The text was updated successfully, but these errors were encountered: