(option: RestoreOption | null)
| 54 | type RestoreOption = 'both' | 'conversation' | 'code' | 'summarize' | 'summarize_up_to' | 'nevermind'; |
| 55 | |
| 56 | function isSummarizeOption(option: RestoreOption | null): option is 'summarize' | 'summarize_up_to' { |
| 57 | return option === 'summarize' || option === 'summarize_up_to'; |
| 58 | } |
| 59 | |
| 60 | type Props = { |
| 61 | messages: Message[]; |
no outgoing calls
no test coverage detected