( id: string | null | undefined, )
| 175 | } |
| 176 | |
| 177 | export function isSupportedFreebuffModelId( |
| 178 | id: string | null | undefined, |
| 179 | ): id is SupportedFreebuffModelId { |
| 180 | if (!id) return false |
| 181 | return SUPPORTED_FREEBUFF_MODELS.some((m) => m.id === id) |
| 182 | } |
| 183 | |
| 184 | export function isFreebuffPremiumModelId( |
| 185 | id: string | null | undefined, |
no outgoing calls
no test coverage detected