| 4 | export type ChatModeChangeHandler = (mode: ChatMode, dmRecipient?: string) => void; |
| 5 | |
| 6 | export interface IAgent { |
| 7 | id: string; |
| 8 | name: string; |
| 9 | Icon: LucideIcon; |
| 10 | category: string; |
| 11 | color: string; |
| 12 | isSelected?: boolean; |
| 13 | } |
| 14 | |
| 15 | export interface ICryptoPriceData { |
| 16 | priceUsd: number; |
nothing calls this directly
no outgoing calls
no test coverage detected