keinsell / neuronek

🧬 Intelligent dosage tracker application with purpose to monitor supplements, nootropics and psychoactive substances along with their long-term influence on one's mind and body.
https://neuronek.up.railway.app/reference
Do What The F*ck You Want To Public License
12 stars 2 forks source link

`Substance` should contain chemcial details such as `iupac` #285

Closed keinsell closed 1 year ago

keinsell commented 1 year ago
export interface ChemcialDetailsProperties {
  iupac: string;
  formula: string;
  molecularWeight: number;
  inchi: string;
  inchiKey: string;
  smiles: string;
}