@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
14 lines (13 loc) • 329 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to words.
*/
export declare type WordDefinitions = LocaleEntry<{
adjective: string[];
adverb: string[];
conjunction: string[];
interjection: string[];
noun: string[];
preposition: string[];
verb: string[];
}>;