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
private class property public method
When generating docs it should not show private properties when excludePrivate is set to true.
excludePrivate
true
It fails to mark a private property as private. Instead it is listed as a public method
Given code like this:
private _onStorage = (e: StorageEvent): void => {
https://github.com/arv/replicache-sdk-js/blob/147b0d932aa32f8066a9dcdeb78b601103e03ed6/src/replicache.ts#L223
On branch https://github.com/arv/replicache-sdk-js/tree/typedoc-0.20
You can repro this by running npm run doc and then npx http-server docs and checking out the generated documentation for the default export.
npm run doc
npx http-server docs
default
The text was updated successfully, but these errors were encountered:
9b4f898
Fixed in 0.20.12, thanks for the report!
Sorry, something went wrong.
No branches or pull requests
Search terms
private class property public method
Expected Behavior
When generating docs it should not show private properties when
excludePrivate
is set totrue
.Actual Behavior
It fails to mark a private property as private. Instead it is listed as a public method
Steps to reproduce the bug
Given code like this:
https://github.com/arv/replicache-sdk-js/blob/147b0d932aa32f8066a9dcdeb78b601103e03ed6/src/replicache.ts#L223
On branch https://github.com/arv/replicache-sdk-js/tree/typedoc-0.20
You can repro this by running
npm run doc
and thennpx http-server docs
and checking out the generated documentation for thedefault
export.Environment
The text was updated successfully, but these errors were encountered: