René's URL Explorer Experiment


Title: Mapped array/tuple types not always working as expected · Issue #43129 · microsoft/TypeScript · GitHub

Open Graph Title: Mapped array/tuple types not always working as expected · Issue #43129 · microsoft/TypeScript

X Title: Mapped array/tuple types not always working as expected · Issue #43129 · microsoft/TypeScript

Description: Bug Report 🔎 Search Terms Mapped array types 🕗 Version & Regression Information I noticed now in TS 4.1.2. ⏯ Code and Playground Links There are two problems. The following has an error in the mapped type despite that I did it just like ...

Open Graph Description: Bug Report 🔎 Search Terms Mapped array types 🕗 Version & Regression Information I noticed now in TS 4.1.2. ⏯ Code and Playground Links There are two problems. The following has an error in the mapp...

X Description: Bug Report 🔎 Search Terms Mapped array types 🕗 Version & Regression Information I noticed now in TS 4.1.2. ⏯ Code and Playground Links There are two problems. The following has an error in the ...

Opengraph URL: https://github.com/microsoft/TypeScript/issues/43129

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Mapped array/tuple types not always working as expected","articleBody":"# Bug Report\r\n\r\n### 🔎 Search Terms\r\n\r\nMapped array types\r\n\r\n### 🕗 Version \u0026 Regression Information\r\n\r\nI noticed now in TS 4.1.2.\r\n\r\n### ⏯ Code and Playground Links\r\n\r\nThere are two problems.\r\n\r\nThe following has an error in the mapped type despite that I did it just like in https://github.com/microsoft/TypeScript/pull/26063 (as far as I know):\r\n\r\n```ts\r\ntype Constructor\u003cT = object, A extends any[] = any[], Static = {}\u003e = (new (...a: A) =\u003e T) \u0026 Static\r\n\r\ntype ElementTypeArrayToInstArray\u003cT extends Constructor[]\u003e = {\r\n\t[K in keyof T]: InstanceType\u003cT[K]\u003e // \u003c----------- ERROR\r\n}\r\ntype ArrayValues\u003cT extends any[]\u003e = T[keyof T]\r\ntype ElementTypes\u003cT extends Constructor[]\u003e = ArrayValues\u003cElementTypeArrayToInstArray\u003cT\u003e\u003e\r\n\r\ntype test = ElementTypes\u003c[typeof HTMLAnchorElement, typeof HTMLDivElement]\u003e\r\n```\r\n\r\n[Playground link with relevant code](https://www.typescriptlang.org/play?#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISVwpoA9CNQeAC00zOzkz4ASgsA8guuqh5hjJHRAGq8vugQSGms7Fw8-ELDYgSCDU2t7ZtefoHB-cenGRfZiXk4VCFMTJPYHI4nN5BBAhMKgmLxRLwwjqdTuTzQdgoMRQj5hE6CDEtKAACQIAFkADIMBCYAAWuFxMPoRNaZKpABF5AA3JnAYauIA)\r\n\r\nBut notice that when you hover on `test`, it is a union of all the values of the array including values from non-numeric keys, which is unlike the examples in #26063.\r\n\r\nThere seems to some sort of special casing happening.\r\n\r\nI had to specify that I want `number` keys only in order(unlike #26063) to get rid of the error:\r\n\r\n```js\r\ntype Constructor\u003cT = object, A extends any[] = any[], Static = {}\u003e = (new (...a: A) =\u003e T) \u0026 Static\r\n\r\ntype ElementTypeArrayToInstArray\u003cT extends Constructor[]\u003e = {\r\n\t[K in keyof T]: InstanceType\u003cT[number \u0026 K]\u003e // \u003c----------- GOOD\r\n}\r\ntype ArrayValues\u003cT extends any[]\u003e = T[keyof T]\r\ntype ElementTypes\u003cT extends Constructor[]\u003e = ArrayValues\u003cElementTypeArrayToInstArray\u003cT\u003e\u003e\r\n\r\ntype test = ElementTypes\u003c[typeof HTMLAnchorElement, typeof HTMLDivElement]\u003e\r\n```\r\n\r\n[Playground link with relevant code](https://www.typescriptlang.org/play?#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISCCOgB5BCoUI4VwpoA9LNQeAC0K6trS1AA4gDy2wAirqoeYYyR0QBqvL7oEEhprOxcPPxCM2IEgg1Nre3HXn6BYL9W73DJPbKJPI4VCFMTJC5XG53AFBBAhMLwmLxRKYwjqdTuTzQdgoMQooFhO6CIktKAACQIAFkADIMBCYAAWuHJaPoNNaDJZe3kADcecAZq4gA)\r\n\r\n\r\nBut notice that `test` still contains all the values of all keys, not just array values.\r\n\r\nFinally, I had to specify numeric keys for `ArrayValues`:\r\n\r\n```ts\r\ntype Constructor\u003cT = object, A extends any[] = any[], Static = {}\u003e = (new (...a: A) =\u003e T) \u0026 Static\r\n\r\ntype ElementTypeArrayToInstArray\u003cT extends Constructor[]\u003e = {\r\n\t[K in keyof T]: InstanceType\u003cT[number \u0026 K]\u003e\r\n}\r\ntype ArrayValues\u003cT extends any[]\u003e = T[number \u0026 keyof T] // \u003c-------- number\r\ntype ElementTypes\u003cT extends Constructor[]\u003e = ArrayValues\u003cElementTypeArrayToInstArray\u003cT\u003e\u003e\r\n\r\ntype test = ElementTypes\u003c[typeof HTMLAnchorElement, typeof HTMLDivElement]\u003e\r\n```\r\n\r\n[Playground link with relevant code](https://www.typescriptlang.org/play?#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISCCOgB5BCoUI4Vwuquqh5hjJHRAGq8vugQSGms7Fw8-EIzYgRDI2MTjg1Nre1QAPT3UHgAtG-vb1DDo+MLXn6BYL9LY7DL7bKJPI4VCFMTJVbrTbbAFBBAhMLwmLxRKYwjqWZ-aDsFBiFFAsLbQSeCAtKAACQIAFkADIMBCYAAWuDJaPo1NpDJZABF5AA3HnAGauIA)\r\n\r\nBut notice if I use `Promise` instead of `InstanceType`, the first issues goes away, although `number` is still needed in `ArrayValues`:\r\n\r\n```ts\r\ntype Constructor\u003cT = object, A extends any[] = any[], Static = {}\u003e = (new (...a: A) =\u003e T) \u0026 Static\r\n\r\ntype ElementTypeArrayToInstArray\u003cT extends Constructor[]\u003e = {\r\n\t[K in keyof T]: Promise\u003cT[K]\u003e // \u003c-------- no number\r\n}\r\ntype ArrayValues\u003cT extends any[]\u003e = T[number \u0026 keyof T] // \u003c-------- number still needed\r\ntype ElementTypes\u003cT extends Constructor[]\u003e = ArrayValues\u003cElementTypeArrayToInstArray\u003cT\u003e\u003e\r\n\r\ntype test = ElementTypes\u003c[typeof HTMLAnchorElement, typeof HTMLDivElement]\u003e\r\n```\r\n\r\n[Playground link with relevant code](https://www.typescriptlang.org/play?#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWAAqocAHySBCElcKaAPSjUHgAtDOzM1AIcAvoAeQQqK6qHmGMkdEAary+6BBIaazsXDz8QiNiBIIIK2uoUI4NTa3tUOOTc3PLVbrKAoeS+XwLCAQTjQ7ZePyBYKhSBnIgXTI8eCJPI4VCFMTJA5HE5nBFBBAhMKEmLxRLUwjqdTuTzQdgoMRkpFhM6CFktKAACQIAFkADIMBCYAAWuE5FPofNaQrFABF5AA3OXAEauIA)\r\n\r\n\r\n\r\n### 🙁 Actual behavior\r\n\r\nDoes not work like #26063\r\n\r\n### 🙂 Expected behavior\r\n\r\nWorks like #26063\r\n\r\n---\r\n\r\nThere seems to be some sort of special casing going on.","author":{"url":"https://github.com/trusktr","@type":"Person","name":"trusktr"},"datePublished":"2021-03-07T21:58:15.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/43129/TypeScript/issues/43129"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:ecc0da9a-77e5-61c0-f8c5-fc04facb36b9
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD714:21F886:148162:1DE964:6A61FB91
html-safe-nonceef3fb37be305d19dbc08ef32199024a6d4ab519fed1854558d767314fb0819ea
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJENzE0OjIxRjg4NjoxNDgxNjI6MURFOTY0OjZBNjFGQjkxIiwidmlzaXRvcl9pZCI6IjIxMjYxMTg0MjA4NzAyMDAyMDkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac7ac5bb7a2337bb393f26baf33a0e478c02db7b225bcdbf5321b1bc7bbc04b790
hovercard-subject-tagissue:824031972
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/microsoft/TypeScript/43129/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3529cfdfdf858aa571ac8d81b6c5acafa3c3ae7d2aa5842200d36dfc328f093f/microsoft/TypeScript/issues/43129
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3529cfdfdf858aa571ac8d81b6c5acafa3c3ae7d2aa5842200d36dfc328f093f/microsoft/TypeScript/issues/43129
og:image:altBug Report 🔎 Search Terms Mapped array types 🕗 Version & Regression Information I noticed now in TS 4.1.2. ⏯ Code and Playground Links There are two problems. The following has an error in the mapp...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametrusktr
hostnamegithub.com
expected-hostnamegithub.com
None9e41a6fd863e96b9c7e9185dc317bf107dbbf8cb10efd6dea957211963f33775
turbo-cache-controlno-preview
go-importgithub.com/microsoft/TypeScript git https://github.com/microsoft/TypeScript.git
octolytics-dimension-user_id6154722
octolytics-dimension-user_loginmicrosoft
octolytics-dimension-repository_id20929025
octolytics-dimension-repository_nwomicrosoft/TypeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id20929025
octolytics-dimension-repository_network_root_nwomicrosoft/TypeScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release2ed5e9c44acb35dcc1d752e449d2a6f7a6164b7b
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoft/TypeScript/issues/43129#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fissues%2F43129
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fissues%2F43129
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=microsoft%2FTypeScript
Reloadhttps://github.com/microsoft/TypeScript/issues/43129
Reloadhttps://github.com/microsoft/TypeScript/issues/43129
Reloadhttps://github.com/microsoft/TypeScript/issues/43129
Please reload this pagehttps://github.com/microsoft/TypeScript/issues/43129
microsoft https://github.com/microsoft
TypeScripthttps://github.com/microsoft/TypeScript
Notifications https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Fork 13.6k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Star 110k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Code https://github.com/microsoft/TypeScript
Issues 5k+ https://github.com/microsoft/TypeScript/issues
Pull requests 21 https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security and quality 0 https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
Code https://github.com/microsoft/TypeScript
Issues https://github.com/microsoft/TypeScript/issues
Pull requests https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security and quality https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
Mapped array/tuple types not always working as expectedhttps://github.com/microsoft/TypeScript/issues/43129#top
Needs More InfoThe issue still hasn't been fully clarifiedhttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Needs%20More%20Info%22
https://github.com/trusktr
trusktrhttps://github.com/trusktr
on Mar 7, 2021https://github.com/microsoft/TypeScript/issues/43129#issue-824031972
#26063https://github.com/microsoft/TypeScript/pull/26063
Playground link with relevant codehttps://www.typescriptlang.org/play#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISVwpoA9CNQeAC00zOzkz4ASgsA8guuqh5hjJHRAGq8vugQSGms7Fw8-ELDYgSCDU2t7ZtefoHB-cenGRfZiXk4VCFMTJPYHI4nN5BBAhMKgmLxRLwwjqdTuTzQdgoMRQj5hE6CDEtKAACQIAFkADIMBCYAAWuFxMPoRNaZKpABF5AA3JnAYauIA
#26063https://github.com/microsoft/TypeScript/pull/26063
#26063https://github.com/microsoft/TypeScript/pull/26063
Playground link with relevant codehttps://www.typescriptlang.org/play#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISCCOgB5BCoUI4VwpoA9LNQeAC0K6trS1AA4gDy2wAirqoeYYyR0QBqvL7oEEhprOxcPPxCM2IEgg1Nre3HXn6BYL9W73DJPbKJPI4VCFMTJC5XG53AFBBAhMLwmLxRKYwjqdTuTzQdgoMQooFhO6CIktKAACQIAFkADIMBCYAAWuHJaPoNNaDJZe3kADcecAZq4gA
Playground link with relevant codehttps://www.typescriptlang.org/play#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWCSj8mBChkISCCOgB5BCoUI4Vwuquqh5hjJHRAGq8vugQSGms7Fw8-EIzYgRDI2MTjg1Nre1QAPT3UHgAtG-vb1DDo+MLXn6BYL9LY7DL7bKJPI4VCFMTJVbrTbbAFBBAhMLwmLxRKYwjqWZ-aDsFBiFFAsLbQSeCAtKAACQIAFkADIMBCYAAWuDJaPo1NpDJZABF5AA3HnAGauIA
Playground link with relevant codehttps://www.typescriptlang.org/play#code/C4TwDgpgBAwg9gOwM7AE4FcDGw6oDwAqUAvFHAEYBWE2ANFAIJQQAewECAJklAIYIgA2gF0SfASPoBlYL2ABLTGIDeAXwB8YgBQIIAdyhaAdCd4AuRgEoSmgtYBkUGXMUAoV6EhQAogBsIALYcwATgEAyoqLwgBHAAksjAEVEghMxsHNywiCgY2LgimqTKrgCQggDSUPIIUADWECBwAGZQBMIWAAqocAHySBCElcKaAPSjUHgAtDOzM1AIcAvoAeQQqK6qHmGMkdEAary+6BBIaazsXDz8QiNiBIIIK2uoUI4NTa3tUOOTc3PLVbrKAoeS+XwLCAQTjQ7ZePyBYKhSBnIgXTI8eCJPI4VCFMTJA5HE5nBFBBAhMKEmLxRLUwjqdTuTzQdgoMRkpFhM6CFktKAACQIAFkADIMBCYAAWuE5FPofNaQrFABF5AA3OXAEauIA
#26063https://github.com/microsoft/TypeScript/pull/26063
#26063https://github.com/microsoft/TypeScript/pull/26063
Needs More InfoThe issue still hasn't been fully clarifiedhttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Needs%20More%20Info%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.