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
move to file self imports
No response
// file _a.ts export interface ISomething { }
// file _b.ts import { ISomething } from './a'; export function func(something: ISomething) { }
Select func and move it to _a.ts π Observe the result:
func
_a.ts
// file _a.ts import { ISomething } from './a'; // <------------------ incorrect import from itself export interface ISomething { } export function func(something: ISomething) { }
// file _a.ts export interface ISomething { } export function func(something: ISomething) { }
The text was updated successfully, but these errors were encountered:
navya9singh
Successfully merging a pull request may close this issue.
π Search Terms
move to file self imports
π Version & Regression Information
β― Playground Link
No response
π» Code
Select
func
and move it to_a.ts
π Observe the result:
π Actual behavior
π Expected behavior
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: