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)
Issue with Storybook autogenerating docs/prop description for a react component
Mine is a older repo (think webpack 3.*). I added storybook to the repo and modified a few of the webpack rules for my .scss files to load properly.
I can get the Storybook controls to load properly. ...
Vipin Batchu
Votes: 0
Answers: 1
How to make a map with predetermined strings as key?
I want to define a map with predetermined strings in JSDoc. Such as:
/**
* @typedef {'date' | 'string' | 'integer' | 'float' | 'currency' | 'description'} ColumnTypes
* @type {Map<ColumnTypes, st...
Magician
Votes: 0
Answers: 2
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