Skip to content

Commit 158869e

Browse files
committed
lint jsdoc
1 parent fb9da69 commit 158869e

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/generators/legacy-json-all/index.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ export default {
2222
dependsOn: 'legacy-json',
2323

2424
/**
25+
* Generates the legacy JSON `all.json` file.
2526
*
26-
* @param input
27-
* @param root0
28-
* @param root0.output
27+
* @param {Input} input
28+
* @param {Partial<GeneratorOptions>} options
2929
*/
3030
async generate(input, { output }) {
3131
/**

src/generators/legacy-json/index.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export default {
2828
dependsOn: 'ast',
2929

3030
/**
31+
* Generates a legacy JSON file.
3132
*
32-
* @param input
33-
* @param root0
34-
* @param root0.output
33+
* @param {Input} input
34+
* @param {Partial<GeneratorOptions>} options
3535
*/
3636
async generate(input, { output }) {
3737
const buildSection = createSectionBuilder();

src/generators/legacy-json/utils/parseSignature.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ function findParameter(parameterName, index, markdownParameters) {
108108

109109
/**
110110
* @param {string[]} declaredParameters
111-
* @param {Array<import('../types.d.ts').ParameterList>} parameters
112-
* @param markdownParameters
111+
* @param {Array<import('../types.d.ts').ParameterList>} markdownParameters
113112
*/
114113
function parseParameters(declaredParameters, markdownParameters) {
115114
/**

0 commit comments

Comments
 (0)