lorem-ipsum
Version:
Generates passages of lorem ipsum text suitable for use as placeholder copy in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.
16 lines (15 loc) • 463 B
text/typescript
export const UNIT_WORDS = "words";
export const UNIT_WORD = "word";
export const UNIT_SENTENCES = "sentences";
export const UNIT_SENTENCE = "sentence";
export const UNIT_PARAGRAPHS = "paragraphs";
export const UNIT_PARAGRAPH = "paragraph";
export const UNITS = [
UNIT_WORDS,
UNIT_WORD,
UNIT_SENTENCES,
UNIT_SENTENCE,
UNIT_PARAGRAPHS,
UNIT_PARAGRAPH,
];
export type LoremUnit = "words" | "word" | "sentences" | "sentence" | "paragraphs" | "paragraph";