(projectPath: string)
| 24 | }; |
| 25 | |
| 26 | const initAction = async (projectPath: string): Promise<void> => { |
| 27 | await telemetry.trackCommand('init', () => actions.init(projectPath)); |
| 28 | }; |
| 29 | |
| 30 | const checkAction = async (options: Parameters<typeof actions.check>[0]): Promise<void> => { |
| 31 | await telemetry.trackCommand('check', () => actions.check(options)); |
nothing calls this directly
no test coverage detected