-
i'm trying to custom-bundle this fft and ifft functions yet not found any fftDependencies or ifftDependencies? has any one has done this and known which dependencies i should import? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
There is documentation on how to do custom bundling here: https://mathjs.org/docs/custom_bundling.html
Are you using the latest version of |
Beta Was this translation helpful? Give feedback.
-
Thanks for your test, i've upgrade the package to the version 14.2.1 and it seems works fine when i import it in the ts file yet inside the customjs file i still get the ts error complaining missed types and when i search inside the types file index.d.ts and find no declared fftDependencies, ifftDependencies types there. I'm not sure its a cache thing or missed incident. |
Beta Was this translation helpful? Give feedback.
Ah, it may be simply that all the
*Dependencies
functions are missing from the TypeScript definitions. We'll have to check that.You can probably use a
// @ts-ignore
as a workaround.