python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
JSDoc: Auto detecting class methods
My jsdocs look like the following
module.exports = class gateio extends Exchange {
/**
* @class
* @name gateio
*/
async fetchOrder (id, symbol = undefined, params = {}) {
...
Sam
Votes: 0
Answers: 1
JSDoc: How do you include a custom css file template in your generated docs?
The JSDoc docs say
Copying a directory of images to the output directory. To copy all of
the static files in ./myproject/static to the output directory:
"default": {
"staticF...
Sam
Votes: 0
Answers: 1
JSDoc - reusing type definitions error (cannot find name ‘type name’)
I have the following project structure:
api/
users/
users.d.js
contexts/
users/
users.d.js
utils/
users/
users.d.js
In utils/users/users.d.js
I am defining the types that are reus...
Victor Molina
Votes: 0
Answers: 1
How to document a nullable union type with jsDoc?
According to jsDoc - tag @type the correct way to annotate a union type is @type {(number|boolean)} and the correct way to annotate a nullable type is @type {?number}.
How do I document a type which i...
user2690527
Votes: 0
Answers: 0