(options: Parameters<typeof actions.check>[0])
| 28 | }; |
| 29 | |
| 30 | const checkAction = async (options: Parameters<typeof actions.check>[0]): Promise<void> => { |
| 31 | await telemetry.trackCommand('check', () => actions.check(options)); |
| 32 | }; |
| 33 | |
| 34 | const formatAction = async (options: Parameters<typeof actions.format>[0]): Promise<void> => { |
| 35 | await telemetry.trackCommand('format', () => actions.format(options)); |
nothing calls this directly
no test coverage detected