type PrenomSet = "A" | "B"; type StemInitial = "Vowel" | "Consonant"; interface VerbLexeme { id: string; gloss: string; prenominalSet: PrenomSet; //todo, stemInitial: StemInitial; stems: Stems; notes?: string; }