webdoc-labs / webdoc

Documentation generator for the web
https://www.webdoclabs.com
Other
79 stars 9 forks source link

Private access modifier not inferred from TypeScript #101

Closed bigtimebuddy closed 3 years ago

bigtimebuddy commented 3 years ago

This doesn't not detect private modifier.

/** Description */
private _onPlay(): void
{
    this._playing = true;
}

Workaround:

/**
 * Description
 * @private
 */
private _onPlay(): void
{
    this._playing = true;
}