We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When importing all currency symbols:
import currencyToSymbolMap from 'currency-symbol-map/map'
I have a type error, module file declaration 'currency-symbol-map/map' not found.
I added this declaration in my project:
type CurrencySymbolMapMap = { [index: string]: string; }; declare module 'currency-symbol-map/map' { import data from 'currency-symbol-map/map'; export default data as CurrencySymbolMapMap; }
It seems to work, but is it possible to include an "official" declaration directly in the module?
Thank you for your fantastic module :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When importing all currency symbols:
I have a type error, module file declaration 'currency-symbol-map/map' not found.
I added this declaration in my project:
It seems to work, but is it possible to include an "official" declaration directly in the module?
Thank you for your fantastic module :)
The text was updated successfully, but these errors were encountered: