()
| 290 | // --------------------------------------------------------------------------- |
| 291 | |
| 292 | export async function loadCharacterConfig(): Promise<CharacterConfig | null> { |
| 293 | const col = await loadCharacterCollection(); |
| 294 | return col ? getActiveCharacter(col) : null; |
| 295 | } |
| 296 | |
| 297 | export function loadCharacterConfigSync(): CharacterConfig | null { |
| 298 | const col = loadCharacterCollectionSync(); |
nothing calls this directly
no test coverage detected