Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 | /** * @module Types/Party * @description Swedish political party types for entity normalization. */ /** Canonical party codes for the eight Riksdag parties */ export type PartyCode = 'S' | 'M' | 'SD' | 'V' | 'MP' | 'C' | 'L' | 'KD'; /** Map from party code to known name variants */ export type PartyVariantMap = Record<PartyCode, readonly string[]>; |