/
45case
/
ptable
Обзор
Документация
Войти
/
45case
/
ptable
Код
Запросы
3
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/entities/element/model/elements.ts
33 строки
719 B
Olya
first_commit
06 июл 2026, 18:16
06 июл 2026, 18:16
0ff6e29
Код
Авторство
О чём код?
export type ElementSeries = | "actinide" | "alkali-metal" | "alkaline-earth-metal" | "lanthanide" | "metalloid" | "noble-gas" | "nonmetal" | "post-transition-metal" | "transition-metal" | "unknown"; export type ElementPhaseAtStp = "gas" | "liquid" | "solid" | "unknown"; export type PeriodicElement = { atomicMass: number | null; atomicNumber: number; boilingPointKelvin: number | null; category: string; column: number; group: number | null; meltingPointKelvin: number | null; name: string; nameEn: string; period: number; phaseAtStp: ElementPhaseAtStp; row: number; series: ElementSeries; slug: string; state: string; summary: string | null; symbol: string; };