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
Describe the bug With the following import import { DateTime, DurationLike } from 'luxon'; that is used in a type similar to the following:
import { DateTime, DurationLike } from 'luxon';
type MyMethodParams = { duration?: DurationLike; name: string; type: string; }
I'm receiving an error from ESLint: DurationLike not found in 'luxon'eslintimport/named
DurationLike not found in 'luxon'eslintimport/named
To Reproduce Import DurationLike (also some other types)
Actual vs Expected behavior DurationLike should be imported normally, since it's a public/exported resource
DurationLike
Desktop:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
With the following import
import { DateTime, DurationLike } from 'luxon';
that is used in a type similar to the following:I'm receiving an error from ESLint:
DurationLike not found in 'luxon'eslintimport/named
To Reproduce
Import DurationLike (also some other types)
Actual vs Expected behavior
DurationLike
should be imported normally, since it's a public/exported resourceDesktop:
The text was updated successfully, but these errors were encountered: