| 27 | } |
| 28 | |
| 29 | interface BufferEntry { |
| 30 | header?: string; |
| 31 | value: string; |
| 32 | full: string; |
| 33 | result?: { |
| 34 | status: 'success' | 'error'; |
| 35 | message: string; |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | const stripDestructiveANSI = (input: string): string => { |
| 40 | // biome-ignore lint/suspicious/noControlCharactersInRegex: intentional |
nothing calls this directly
no outgoing calls
no test coverage detected