blob: fb88bb315216cb3a09482b4cd2c9a5a2e8b98b19 (
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 WordDefinition = LocaleEntry<{
adjective: string[];
adverb: string[];
conjunction: string[];
interjection: string[];
noun: string[];
preposition: string[];
verb: string[];
}>;
|