(hint: ClaudeCodeHint)
| 153 | |
| 154 | /** Raw store write. Callers should gate first (see module comment). */ |
| 155 | export function setPendingHint(hint: ClaudeCodeHint): void { |
| 156 | if (shownThisSession) return |
| 157 | pendingHint = hint |
| 158 | notify() |
| 159 | } |
| 160 | |
| 161 | /** Clear the slot without flipping the session flag — for rejected hints. */ |
| 162 | export function clearPendingHint(): void { |
no test coverage detected