()
| 3 | import type { OverlayState } from './interfaces.js' |
| 4 | |
| 5 | const buildOverlayState = (): OverlayState => ({ |
| 6 | agents: false, |
| 7 | agentsInitialHistoryIndex: 0, |
| 8 | approval: null, |
| 9 | billing: null, |
| 10 | clarify: null, |
| 11 | confirm: null, |
| 12 | modelPicker: false, |
| 13 | pager: null, |
| 14 | petPicker: false, |
| 15 | pluginsHub: false, |
| 16 | secret: null, |
| 17 | sessions: false, |
| 18 | skillsHub: false, |
| 19 | sudo: null |
| 20 | }) |
| 21 | |
| 22 | export const $overlayState = atom<OverlayState>(buildOverlayState()) |
| 23 |
no outgoing calls
no test coverage detected