UNPKG

jsfakeit

Version:

![alt text](https://raw.githubusercontent.com/Anirban20001962/jsfakeit/main/logo.png)

19 lines (18 loc) 810 B
/** Generate a random noun*/ export declare const noun: () => string; /** Generate a random common noun*/ export declare const nounCommon: () => string; /** Generate random concrete noun*/ export declare const nounConcrete: () => string; /** Generate random abstract noun*/ export declare const nounAbstract: () => string; /** Generate random collective noun person*/ export declare const nounCollectivePeople: () => string; /** Generate random collective noun animal*/ export declare const nounCollectiveAnimal: () => string; /** Generate random collective noun thing*/ export declare const nounCollectiveThing: () => string; /** Genrate random countable noun*/ export declare const nounCountable: () => string; /** Generate random uncountale noun*/ export declare const nounProper: () => string | undefined;