11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import yargs from 'yargs';
|
|
|
|
export const command = 'record';
|
|
|
|
export const desc = 'Record operations.';
|
|
|
|
exports.builder = (yargs: yargs.Argv) => {
|
|
return yargs.commandDir('record-cmds')
|
|
.demandCommand()
|
|
}
|