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
The problem is the highlighting between the angle brackets is wrong in vscode.
im guessing that you have a rule like
begin: < other stuff end: >
so when there is a new line after the < it doesn't get recognized correctly.
<
Code
interface A { colors: { [key: string]: string; }; data?: { [key: string]: any; }; } const h = { setSubProperty: < T extends A, K extends keyof T, J extends keyof T[K] >( property: K, key: J, value: T[K][J] ) => {} }
Edit: just noticed it works inside of an interface.
The text was updated successfully, but these errors were encountered:
b7ef094
No branches or pull requests
The problem is the highlighting between the angle brackets is wrong in vscode.
im guessing that you have a rule like
so when there is a new line after the
<
it doesn't get recognized correctly.Code
The text was updated successfully, but these errors were encountered: