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
Im trying to import Translations type. seems like its being exported from:
Translations
// /node_modules/sveltekit-i18n/node_modules/@sveltekit-i18n/base/dist/index.d.ts export { Config, Loader, Logger, Parser, Translations, I18n as default };
Its only showing types from:
// /@sveltekit-i18n/parser-default/dist/index.d.ts export { Config, Modifier, Parser, parser as default };
I need to add library absolute path to get proper typing.
import type { Translations } from "../../node_modules/sveltekit-i18n/node_modules/@sveltekit-i18n/base";
But It would be better If can get types from base lib itself.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Im trying to import
Translations
type.seems like its being exported from:
Its only showing types from:
Workaround
I need to add library absolute path to get proper typing.
But It would be better If can get types from base lib itself.
The text was updated successfully, but these errors were encountered: