vegan-ipsum
Version:
Generates passages of vegan-themed placeholder text suitable for use in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.
25 lines (24 loc) • 704 B
TypeScript
/**
* An array of default lorem ipsum words.
*/
export declare const DEFAULT_WORDS: string[];
/**
* An array of vegan-related words to accompany the default ones.
*/
export declare const VEGAN_WORDS: string[];
/**
* An array of kindness-related words to accompany the default ones.
*/
export declare const KINDNESS_WORDS: string[];
/**
* An array of vegan food-related words to accompany the default ones.
*/
export declare const VEGAN_FOOD_WORDS: string[];
/**
* An array of vegetable-related words to accompany the default ones.
*/
export declare const VEGGIE_WORDS: string[];
/**
* Final array combining default lorem ipsum and vegan-themed words.
*/
export declare const WORDS: string[];