aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/lorem.ts
blob: 89265b33be2c6fec4adf6868141a148c2bf0c6c0 (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 LoremDefinition = LocaleEntry<{
  /**
   * Lorem words used to generate dummy texts.
   */
  word: string[];
}>;