(subCommand: string, options: any)
| 16 | }; |
| 17 | |
| 18 | const dbAction = async (subCommand: string, options: any): Promise<void> => { |
| 19 | await telemetry.trackCommand(`db ${subCommand}`, () => actions.db(subCommand, options)); |
| 20 | }; |
| 21 | |
| 22 | const infoAction = async (projectPath: string): Promise<void> => { |
| 23 | await telemetry.trackCommand('info', () => actions.info(projectPath)); |
no test coverage detected