aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/lorem.ts
blob: 4d851b30b642baa0a281b098965caa8aec65066b (plain)
1
2
3
4
5
6
7
8
9
10
11
import type { LocaleEntry } from './definitions';

/**
 * The possible definitions related to lorem texts.
 */
export type LoremDefinitions = LocaleEntry<{
  /**
   * Lorem words used to generate dummy texts.
   */
  words: string[];
}>;