blob: 01f791f8a9db2691caddae5beb38aeae34582dd5 (
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.
*/
chemical_element: ReadonlyArray<ChemicalElement>;
}>;
|