import type { ChemicalElement, Unit } from '../modules/science'; import type { LocaleEntry } from './definitions'; /** * The possible definitions related to science. */ export type ScienceDefinition = LocaleEntry<{ /** * Some science units. */ unit: ReadonlyArray; /** * Some periodic table element information. */ chemical_element: ReadonlyArray; }>;