Using angular 13 i get the following error:
Could not find a declaration file for module 'spel2js'
when trying to import as:
import { StandardContext, SpelExpressionEvaluator } from 'spel2js';
I was using const spel2js = require('spel2js'); with angular 12 but it does not work on 13 (and i don't know why).
It seems the solution is for you to provide something like @types/spel2js
Using angular 13 i get the following error:
Could not find a declaration file for module 'spel2js'when trying to import as:
import { StandardContext, SpelExpressionEvaluator } from 'spel2js';I was using
const spel2js = require('spel2js');with angular 12 but it does not work on 13 (and i don't know why).It seems the solution is for you to provide something like
@types/spel2js