jsfakeit
Version:

19 lines (18 loc) • 810 B
TypeScript
/** 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;