21 lines
258 B
TypeScript
21 lines
258 B
TypeScript
|
|
|
|
|
|
const data = {
|
|
nouns: {
|
|
animate: [],
|
|
inanimate: [],
|
|
countable: [],
|
|
uncountable: [],
|
|
genders: {},
|
|
classifiers: {},
|
|
},
|
|
verbs: {
|
|
transitive: [],
|
|
intransitive: [],
|
|
action: [],
|
|
stative: [],
|
|
auxiliar: [],
|
|
}
|
|
}
|