(value: unknown)
| 154 | ]) |
| 155 | |
| 156 | function isFolderIconId(value: unknown): value is FolderIconId { |
| 157 | return typeof value === 'string' && VALID_FOLDER_ICON_IDS.has(value as FolderIconId) |
| 158 | } |
| 159 | |
| 160 | const VALID_FOLDER_COLOR_IDS = new Set<FolderColorId>([ |
| 161 | 'red', |
no outgoing calls
no test coverage detected