blob: c705de823c7e57f6cd1e6cbc9a24973e7695dde6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to words.
*/
export type WordDefinitions = LocaleEntry<{
adjective: string[];
adverb: string[];
conjunction: string[];
interjection: string[];
noun: string[];
preposition: string[];
verb: string[];
}>;
|