(index: number)
| 86 | } |
| 87 | |
| 88 | function ansiIdx(index: number): Color { |
| 89 | return { r: index, g: 0, b: 0, a: 0 } |
| 90 | } |
| 91 | |
| 92 | // Sentinel: a=1 means "terminal default" (matches bat convention) |
| 93 | const DEFAULT_BG: Color = { r: 0, g: 0, b: 0, a: 1 } |
no outgoing calls
no test coverage detected