You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* @class Test
*/
class Test extends React.Component {
static propTypes = /** @lends Test.prototype */ {
/**
* Docs OK!
*/
OK: true,
/**
* Does not doc OK
*/
'not-ok': false,
}
}
OK is correctly a member of Test, however, 'not-ok' is not. Adding an explicit @memberof to the doc block for 'not-ok' will cause it to end up in the right place.
What version of documentation.js are you using?: 4.0.0-rc.1
How are you running documentation.js (on the CLI, Node.js API, Grunt, other?): CLI (or Node.js API)
The text was updated successfully, but these errors were encountered:
Given the following code:
OK
is correctly a member ofTest
, however,'not-ok'
is not. Adding an explicit@memberof
to the doc block for'not-ok'
will cause it to end up in the right place.The text was updated successfully, but these errors were encountered: