Skip to content

Commit a55c5cf

Browse files
authored
Merge pull request #2123 from nellh/jsr-publish-type-fix
chore: Add a type to validateCommand for JSR
2 parents 41f39f9 + 6f319da commit a55c5cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bids-validator/src/setup/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const modalityType = new EnumType<string>(
3434
)
3535

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

0 commit comments

Comments
 (0)