Skip to content

Commit

Permalink
Merge pull request #2123 from nellh/jsr-publish-type-fix
Browse files Browse the repository at this point in the history
chore: Add a type to validateCommand for JSR
  • Loading branch information
rwblair committed Sep 4, 2024
2 parents 41f39f9 + 6f319da commit a55c5cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bids-validator/src/setup/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const modalityType = new EnumType<string>(
)

/** Extendable Cliffy Command with built in BIDS validator options */
export const validateCommand = new Command()
export const validateCommand: Command<void, void, any, string[]> = new Command()
.name('bids-validator')
.type('debugLevel', new EnumType(LogLevelNames))
.description(
Expand Down

0 comments on commit a55c5cf

Please sign in to comment.