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