-
-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
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
fix: jssStyle type #1423
fix: jssStyle type #1423
Conversation
What is the actual error compiler was reporting? This fix seems fishy, need some ts experts to confirm cc @moshest |
the bug is where intellisense no suggestions can't suggest CSS Properties. |
Because we tell them k is CSS properties or string, which means any string. |
oh I see, that makes sense |
Why we remove there the |
typescript can't work with [K in keyof NormalCssProperties | string]
Hi, You are right, that is my mistake, I fix that. |
@kof please review the last commit |
lgtm |
merged, thanks |
Could you please publish master? |
Please publish |
typescript can't work with [K in keyof NormalCssProperties | string]
Corresponding issue (if exists):
What would you like to add/fix?
type definition
Todo