josdejong/mathjs

Property 'Unit' does not exist on type 'MathJsStatic'. Did you mean 'unit'? error in Typescript

Open

#2286 aperta il 14 lug 2021

Vedi su GitHub
 (3 commenti) (0 reazioni) (0 assegnatari)JavaScript (1298 fork)batch import
help wantedtypescript

Metriche repository

Star
 (13.832 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

When creating the following code in Typescript

import { MathJsStatic, create, all, MathType } from 'mathjs';
const math: MathJsStatic = create(all, {}) as MathJsStatic;

math.createUnit('cells'); // works perfectly
math.Unit; // results in: Property 'Unit' does not exist on type 'MathJsStatic'. Did you mean 'unit'?

It looks like Unit isn't properly part of the new MathJS typescript definitions or it's not linking correctly.

if I replace the line above with window['testing'] = math then the Unit is in fact present.

image

Edit: I am running mathjs 9.4.4 without @types/mathjs (relying on the built-in type definitions)

Guida contributor