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[]; }>;