(options: Parameters<typeof actions.format>[0])
| 32 | }; |
| 33 | |
| 34 | const formatAction = async (options: Parameters<typeof actions.format>[0]): Promise<void> => { |
| 35 | await telemetry.trackCommand('format', () => actions.format(options)); |
| 36 | }; |
| 37 | |
| 38 | const seedAction = async (options: Parameters<typeof actions.seed>[0], args: string[]): Promise<void> => { |
| 39 | await telemetry.trackCommand('db seed', () => actions.seed(options, args)); |
nothing calls this directly
no test coverage detected