Files

11 lines
224 B
TypeScript
Raw Permalink Normal View History

2026-03-25 17:31:43 -04:00
type PrenomSet = "A" | "B";
type StemInitial = "Vowel" | "Consonant";
interface VerbLexeme {
id: string;
gloss: string;
prenominalSet: PrenomSet; //todo,
stemInitial: StemInitial;
stems: Stems;
notes?: string;
}