Get all possible status mappings between Kenmei and AniList statuses.
A record of all possible mappings between Kenmei and AniList statuses.
export function getAllPossibleStatusMappings(): Record< KenmeiStatus, MediaListStatus[]> { return { reading: ["CURRENT", "REPEATING"], completed: ["COMPLETED"], on_hold: ["PAUSED"], dropped: ["DROPPED"], plan_to_read: ["PLANNING"], };} Copy
export function getAllPossibleStatusMappings(): Record< KenmeiStatus, MediaListStatus[]> { return { reading: ["CURRENT", "REPEATING"], completed: ["COMPLETED"], on_hold: ["PAUSED"], dropped: ["DROPPED"], plan_to_read: ["PLANNING"], };}
Get all possible status mappings between Kenmei and AniList statuses.