Skip to content

Commit ab73b05

Browse files
committed
types(site): fix jsdoc types in docs script
1 parent a810af7 commit ab73b05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/scripts/util/generate-command-data.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { sortOptions } from '../../../dist/utils/command-helpers.js'
33

44
const program = createMainCommand()
55

6-
/** @type {Array<import('../../src/commands/base-command.js').default>} */
6+
/** @type {Array<import('../../../src/commands/base-command.js').default>} */
77
// @ts-ignore typecast needed
88
const commands = program.commands.sort((cmdA, cmdB) => cmdA.name().localeCompare(cmdB.name()))
99

1010
/**
1111
*
12-
* @param {import('../../src/commands/base-command.js').default} command
12+
* @param {import('../../../src/commands/base-command.js').default} command
1313
*/
1414
const parseCommand = function (command) {
1515
const args = command._args.map(({ _name: name, description }) => ({

0 commit comments

Comments
 (0)