()
| 14 | } |
| 15 | |
| 16 | export function createTerminalState(): TerminalState { |
| 17 | return { |
| 18 | notificationKeys: new Set<string>(), |
| 19 | focused: true, |
| 20 | supportsOsc9: supportsOsc9Notification(), |
| 21 | supportsProgress: supportsTerminalProgress(), |
| 22 | insideTmux: isInsideTmux(), |
| 23 | progressActive: false, |
| 24 | }; |
| 25 | } |
no test coverage detected