(options: Parameters<typeof actions.generate>[0])
| 8 | import { checkNewVersion, getVersion } from './utils/version-utils'; |
| 9 | |
| 10 | const generateAction = async (options: Parameters<typeof actions.generate>[0]): Promise<void> => { |
| 11 | await telemetry.trackCommand('generate', () => actions.generate(options)); |
| 12 | }; |
| 13 | |
| 14 | const migrateAction = async (subCommand: string, options: any): Promise<void> => { |
| 15 | await telemetry.trackCommand(`migrate ${subCommand}`, () => actions.migrate(subCommand, options)); |
nothing calls this directly
no test coverage detected