first parts
This commit is contained in:
10
verb_parts/lexeme.ts
Normal file
10
verb_parts/lexeme.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
type PrenomSet = "A" | "B";
|
||||
type StemInitial = "Vowel" | "Consonant";
|
||||
interface VerbLexeme {
|
||||
id: string;
|
||||
gloss: string;
|
||||
prenominalSet: PrenomSet; //todo,
|
||||
stemInitial: StemInitial;
|
||||
stems: Stems;
|
||||
notes?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user