| 4 | */ |
| 5 | |
| 6 | export interface STMModule { |
| 7 | id: string |
| 8 | name: string |
| 9 | description: string |
| 10 | version: string |
| 11 | author: string |
| 12 | enabled: boolean |
| 13 | config?: Record<string, unknown> |
| 14 | transformer: (input: string, config?: Record<string, unknown>) => string |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Hedge Reducer |
nothing calls this directly
no outgoing calls
no test coverage detected