UNPKG

@noeldemartin/faker

Version:

Generate massive amounts of fake contextual data

16 lines (15 loc) 413 B
import type { ChemicalElement, Unit } from '../modules/science'; import type { LocaleEntry } from './definitions'; /** * The possible definitions related to science. */ export declare type ScienceDefinitions = LocaleEntry<{ /** * Some science units. */ unit: readonly Unit[]; /** * Some periodic table element information. */ chemicalElement: readonly ChemicalElement[]; }>;