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
this
this, globalThis
Given the following definitions:
export function test(this: typeof globalThis, param: string): string;
The generated documentation should include both the this and the param arguments.
param
Only the second param is present.
Run TypeDoc on the following files:
index.d.ts
tsconfig.json
{ "compilerOptions": { }, "typedocOptions": { "entryPoints": ["index.d.ts"], "out": "docs" } }
The text was updated successfully, but these errors were encountered:
fake this
signature.thisParameter
95fe32e
No branches or pull requests
Search terms
this, globalThis
Expected Behavior
Given the following definitions:
The generated documentation should include both the
this
and theparam
arguments.Actual Behavior
Only the second param is present.
Steps to reproduce the bug
Run TypeDoc on the following files:
index.d.ts
:tsconfig.json
:Environment
The text was updated successfully, but these errors were encountered: