aboutsummaryrefslogtreecommitdiff
path: root/src/definitions/lorem.ts
blob: 88947a87815a9ef25d9c9f3db1c9de2c8715f0b1 (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.
   */
  words: string[];
}>;