bughelp wantedtypescript
Description
Using TypeScript:
import math from 'mathjs';`
// @ts-expect-error
math.Unit.isValidAlpha = () => {
return true;
};
Throws Cannot read property \'Unit\' of undefined.
Using TypeScript:
import math from 'mathjs';`
// @ts-expect-error
math.Unit.isValidAlpha = () => {
return true;
};
Throws Cannot read property \'Unit\' of undefined.