-
-
Notifications
You must be signed in to change notification settings - Fork 166
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
feat: Support more keyof
for IndexedAccessType
s
#1065
Conversation
**Description:** ```ts // @strictNullChecks: true // @declaration: true class A<T> { props: T & { foo: string }; } class B extends A<{ x: number}> { f(p: this["props"]) { p.x; } } ```
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Can you rebase, please?
Thank you for the PR! Files to checkThese are files which is affected by the current PR, but not reflected. If there's no file below this message, please ignore this message. You can run
|
keyof and indexedAccess
about type_mode(intersection and union)keyof
for IndexedAccessType
s
Description:
BREAKING CHANGE:
Related issue (if exists):