blob: a2fa995b73c90048ff9777f50f531fe2922a8d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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<Unit>;
/**
* Some periodic table element information.
*/
chemicalElement: ReadonlyArray<ChemicalElement>;
}>;
|