( id: string | null | undefined, )
| 151 | } |
| 152 | |
| 153 | export function isFreebuffModelId( |
| 154 | id: string | null | undefined, |
| 155 | ): id is FreebuffModelId { |
| 156 | if (!id) return false |
| 157 | return FREEBUFF_MODELS.some((m) => m.id === id) |
| 158 | } |
| 159 | |
| 160 | export function resolveFreebuffModel( |
| 161 | id: string | null | undefined, |
no outgoing calls
no test coverage detected