-
Notifications
You must be signed in to change notification settings - Fork 12.9k
fix Intl.Segments#containing
return value type
#61236
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 Intl.Segments#containing
return value type
#61236
Conversation
@typescript-bot test it |
@jakebailey Here are the results of running the user tests with tsc comparing Everything looks good! |
Hey @jakebailey, the results of running the DT tests are ready. Everything looks the same! |
@jakebailey Here they are:
tscComparison Report - baseline..pr
System info unknown
Hosts
Scenarios
Developer Information: |
@jakebailey Here are the results of running the top 400 repos with tsc comparing Everything looks good! |
@jakebailey Hi. I think this PR can be merged, how about it? |
* @param codeUnitIndex - A number specifying the index of the code unit in the original input string. If the value is omitted, it defaults to `0`. | ||
*/ | ||
containing(codeUnitIndex?: number): SegmentData; | ||
containing(codeUnitIndex?: number): SegmentData | undefined; |
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.
It's unfortunate because this would ideally be tied to noUncheckedIndexedAccess
or something.
Thank you! |
Fixes #61235