| 33 | * Handler function that transforms text during streaming. |
| 34 | */ |
| 35 | export interface RemendHandler { |
| 36 | /** Handler function: takes text, returns modified text */ |
| 37 | handle: (text: string) => string; |
| 38 | /** Unique identifier for this handler */ |
| 39 | name: string; |
| 40 | /** Priority (lower runs first). Built-in priorities: 0-100. Default: 100 */ |
| 41 | priority?: number; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Configuration options for the remend function. |
nothing calls this directly
no outgoing calls
no test coverage detected