René's URL Explorer Experiment


Title: When trying to use mapped tuples as rest parameters error 'A rest parameter must be of an array type' given · Issue #29919 · microsoft/TypeScript · GitHub

Open Graph Title: When trying to use mapped tuples as rest parameters error 'A rest parameter must be of an array type' given · Issue #29919 · microsoft/TypeScript

X Title: When trying to use mapped tuples as rest parameters error 'A rest parameter must be of an array type' given · Issue #29919 · microsoft/TypeScript

Description: TypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams = T extends (...args: infer P) => any ? P : never; type Stringify = { [K in keyof T]: string; }; type Optional = { [K in keyof T]?: T[K]; }; type Thre...

Open Graph Description: TypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams = T extends (...args: infer P) => any ? P : never; type Stringify = { [K in keyof T]: string; }; type Optional...

X Description: TypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams<T> = T extends (...args: infer P) => any ? P : never; type Stringify<T> = { [K in keyof T]: string; }; t...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"When trying to use mapped tuples as rest parameters error 'A rest parameter must be of an array type' given","articleBody":"\u003c!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨\r\n\r\nHalf of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common \"Bugs\" That Aren't Bugs section!\r\n\r\nPlease help us by doing the following steps before logging an issue:\r\n  * Search: https://github.com/Microsoft/TypeScript/search?type=Issues\r\n  * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ\r\n\r\nPlease fill in the *entire* template below.\r\n--\u003e\r\n\r\n\u003c!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --\u003e\r\n**TypeScript Version:**  3.2\r\n\r\n\u003c!-- Search terms you tried before logging this (so others can find this issue more easily) --\u003e\r\n**Search Terms:** mapped tuples rest \r\n\r\n**Code**\r\n\r\n```ts\r\ntype FuncParams\u003cT\u003e = T extends (...args: infer P) =\u003e any ? P : never;\r\ntype Stringify\u003cT\u003e = {\r\n    [K in keyof T]: string;\r\n};\r\ntype Optional\u003cT\u003e = {\r\n    [K in keyof T]?: T[K];\r\n};\r\n\r\ntype ThreeParamFunc = (paramOne: string, paramTwo: number, paramThree: boolean) =\u003e void;\r\n\r\ntype Params = FuncParams\u003cThreeParamFunc\u003e; // [string, number, boolean]\r\ntype StringParams = Stringify\u003cFuncParams\u003cThreeParamFunc\u003e\u003e; // [string, string, string]\r\ntype OptionalParams = Optional\u003cFuncParams\u003cThreeParamFunc\u003e\u003e; // [string?, number?, boolean?]\r\n\r\nfunction doStuff\u003cT\u003e(func: T, ...params: FuncParams\u003cT\u003e) { // works fine\r\n}\r\n\r\nfunction doOptionalStuff\u003cT\u003e(func: T, ...params: Optional\u003cFuncParams\u003cT\u003e\u003e) { // A rest parameter must be of an array type.\r\n}\r\n\r\nfunction doStringStuff\u003cT\u003e(func: T, ...params: Stringify\u003cFuncParams\u003cT\u003e\u003e) { // A rest parameter must be of an array type.\r\n}\r\n```\r\n\r\n\r\n**Expected behavior:**\r\nI should be able to use a mapped tuple as a rest param in a function\r\n\r\n**Actual behavior:**\r\nI get the error `A rest parameter must be of an array type.`\r\n\r\n**Playground Link:** \r\n[Link](https://www.typescriptlang.org/play/#src=%0D%0Atype%20FuncParams%3CT%3E%20%3D%20T%20extends%20(...args%3A%20infer%20P)%20%3D%3E%20any%20%3F%20P%20%3A%20never%3B%0D%0Atype%20Stringify%3CT%3E%20%3D%20%7B%0D%0A%20%20%20%20%5BK%20in%20keyof%20T%5D%3A%20string%3B%0D%0A%7D%3B%0D%0Atype%20Optional%3CT%3E%20%3D%20%7B%0D%0A%20%20%20%20%5BK%20in%20keyof%20T%5D%3F%3A%20T%5BK%5D%3B%0D%0A%7D%3B%0D%0A%0D%0Atype%20ThreeParamFunc%20%3D%20(paramOne%3A%20string%2C%20paramTwo%3A%20number%2C%20paramThree%3A%20boolean)%20%3D%3E%20void%3B%0D%0A%0D%0Atype%20Params%20%3D%20FuncParams%3CThreeParamFunc%3E%3B%20%2F%2F%20%5Bstring%2C%20number%2C%20boolean%5D%0D%0Atype%20StringParams%20%3D%20Stringify%3CFuncParams%3CThreeParamFunc%3E%3E%3B%20%2F%2F%20%5Bstring%2C%20string%2C%20string%5D%0D%0Atype%20OptionalParams%20%3D%20Optional%3CFuncParams%3CThreeParamFunc%3E%3E%3B%20%2F%2F%20%5Bstring%3F%2C%20number%3F%2C%20boolean%3F%5D%0D%0A%0D%0Afunction%20doStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20FuncParams%3CT%3E)%20%7B%20%2F%2F%20works%20fine%0D%0A%7D%0D%0A%0D%0Afunction%20doOptionalStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20Optional%3CFuncParams%3CT%3E%3E)%20%7B%20%2F%2F%20A%20rest%20parameter%20must%20be%20of%20an%20array%20type.%0D%0A%7D%0D%0A%0D%0Afunction%20doStringStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20Stringify%3CFuncParams%3CT%3E%3E)%20%7B%20%2F%2F%20A%20rest%20parameter%20must%20be%20of%20an%20array%20type.%0D%0A%7D)\r\n","author":{"url":"https://github.com/Roaders","@type":"Person","name":"Roaders"},"datePublished":"2019-02-14T16:42:48.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":18},"url":"https://github.com/29919/TypeScript/issues/29919"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:e224cd56-01b9-3972-2820-b08682d8f903
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC610:26DA3B:2E838A:42BA41:6A61E3A7
html-safe-noncea85164f7c156bfb12fe835d70ef22c334298d38a872e755fddce37c806a29bf8
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNjEwOjI2REEzQjoyRTgzOEE6NDJCQTQxOjZBNjFFM0E3IiwidmlzaXRvcl9pZCI6Ijg4NTg4MTUyNTc1MDQ3Njg5MzUiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac5c95ba3b75daa94ebf0e841ecce79d7f88173cf35ba33d7774c1dad4488fb584
hovercard-subject-tagissue:410390695
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/29919/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9f46d06c3ecba1d2b55b27ed480dc0e01d49884bcca48dc7448b85debd988dab/microsoft/TypeScript/issues/29919
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9f46d06c3ecba1d2b55b27ed480dc0e01d49884bcca48dc7448b85debd988dab/microsoft/TypeScript/issues/29919
og:image:altTypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams = T extends (...args: infer P) => any ? P : never; type Stringify = { [K in keyof T]: string; }; type Optional...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameRoaders
hostnamegithub.com
expected-hostnamegithub.com
Noneb2de8c74e5e61e893155ba46ee41bc66170c1644cb795adefa8386d490f7781c
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
released1866027ded575df8a15c731dd8b9986c9483ceb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoft/TypeScript/issues/29919#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fissues%2F29919
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%2F29919
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/29919
Reloadhttps://github.com/microsoft/TypeScript/issues/29919
Reloadhttps://github.com/microsoft/TypeScript/issues/29919
Please reload this pagehttps://github.com/microsoft/TypeScript/issues/29919
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
#57122https://github.com/microsoft/TypeScript/pull/57122
When trying to use mapped tuples as rest parameters error 'A rest parameter must be of an array type' givenhttps://github.com/microsoft/TypeScript/issues/29919#top
#57122https://github.com/microsoft/TypeScript/pull/57122
https://github.com/ahejlsberg
Awaiting More FeedbackThis means we'd like to hear from more people who would be helped by this featurehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Awaiting%20More%20Feedback%22
Fix AvailableA PR has been opened for this issuehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Fix%20Available%22
SuggestionAn idea for TypeScripthttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Suggestion%22
https://github.com/Roaders
Roadershttps://github.com/Roaders
on Feb 14, 2019https://github.com/microsoft/TypeScript/issues/29919#issue-410390695
Linkhttps://www.typescriptlang.org/play/#src=%0D%0Atype%20FuncParams%3CT%3E%20%3D%20T%20extends%20(...args%3A%20infer%20P)%20%3D%3E%20any%20%3F%20P%20%3A%20never%3B%0D%0Atype%20Stringify%3CT%3E%20%3D%20%7B%0D%0A%20%20%20%20%5BK%20in%20keyof%20T%5D%3A%20string%3B%0D%0A%7D%3B%0D%0Atype%20Optional%3CT%3E%20%3D%20%7B%0D%0A%20%20%20%20%5BK%20in%20keyof%20T%5D%3F%3A%20T%5BK%5D%3B%0D%0A%7D%3B%0D%0A%0D%0Atype%20ThreeParamFunc%20%3D%20(paramOne%3A%20string%2C%20paramTwo%3A%20number%2C%20paramThree%3A%20boolean)%20%3D%3E%20void%3B%0D%0A%0D%0Atype%20Params%20%3D%20FuncParams%3CThreeParamFunc%3E%3B%20%2F%2F%20%5Bstring%2C%20number%2C%20boolean%5D%0D%0Atype%20StringParams%20%3D%20Stringify%3CFuncParams%3CThreeParamFunc%3E%3E%3B%20%2F%2F%20%5Bstring%2C%20string%2C%20string%5D%0D%0Atype%20OptionalParams%20%3D%20Optional%3CFuncParams%3CThreeParamFunc%3E%3E%3B%20%2F%2F%20%5Bstring%3F%2C%20number%3F%2C%20boolean%3F%5D%0D%0A%0D%0Afunction%20doStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20FuncParams%3CT%3E)%20%7B%20%2F%2F%20works%20fine%0D%0A%7D%0D%0A%0D%0Afunction%20doOptionalStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20Optional%3CFuncParams%3CT%3E%3E)%20%7B%20%2F%2F%20A%20rest%20parameter%20must%20be%20of%20an%20array%20type.%0D%0A%7D%0D%0A%0D%0Afunction%20doStringStuff%3CT%3E(func%3A%20T%2C%20...params%3A%20Stringify%3CFuncParams%3CT%3E%3E)%20%7B%20%2F%2F%20A%20rest%20parameter%20must%20be%20of%20an%20array%20type.%0D%0A%7D
ahejlsberghttps://github.com/ahejlsberg
Awaiting More FeedbackThis means we'd like to hear from more people who would be helped by this featurehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Awaiting%20More%20Feedback%22
Fix AvailableA PR has been opened for this issuehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Fix%20Available%22
SuggestionAn idea for TypeScripthttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Suggestion%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.