File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ import { moderateCommand } from './moderate.ts';
1010import { summarizeCommand } from './summarize.ts' ;
1111import { translateCaptionsCommand } from './translate-captions.ts' ;
1212
13- export const robotsCommand = new Command ( )
13+ // biome-ignore lint/suspicious/noExplicitAny: Cliffy's chained types are too complex for TS to infer
14+ export const robotsCommand : Command < any > = new Command ( )
1415 . description ( 'Run AI-powered workflows on your video assets using Mux Robots' )
1516 . action ( function ( ) {
1617 this . showHelp ( ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ interface TranslateCaptionsOptions {
1010 json ?: boolean ;
1111}
1212
13- export const translateCaptionsCommand = new Command ( )
13+ // biome-ignore lint/suspicious/noExplicitAny: Cliffy's chained types are too complex for TS to infer
14+ export const translateCaptionsCommand : Command < any > = new Command ( )
1415 . description (
1516 'Create a job to translate captions on a video to another language' ,
1617 )
You can’t perform that action at this time.
0 commit comments