| 158 | } |
| 159 | // Add this interface near the top with other type definitions |
| 160 | interface ParseFunction<T> { |
| 161 | (value: any): T; |
| 162 | } |
| 163 | |
| 164 | // Update the ControlInput type to include parse |
| 165 | type ControlInput<V, P = {}> = { |
nothing calls this directly
no outgoing calls
no test coverage detected