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
Open Graph Description: TypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams
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
Domain: github.com
{"@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-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:e224cd56-01b9-3972-2820-b08682d8f903 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | C610:26DA3B:2E838A:42BA41:6A61E3A7 |
| html-safe-nonce | a85164f7c156bfb12fe835d70ef22c334298d38a872e755fddce37c806a29bf8 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNjEwOjI2REEzQjoyRTgzOEE6NDJCQTQxOjZBNjFFM0E3IiwidmlzaXRvcl9pZCI6Ijg4NTg4MTUyNTc1MDQ3Njg5MzUiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | 5c95ba3b75daa94ebf0e841ecce79d7f88173cf35ba33d7774c1dad4488fb584 |
| hovercard-subject-tag | issue:410390695 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/microsoft/TypeScript/29919/issue_layout |
| twitter:image | https://opengraph.githubassets.com/9f46d06c3ecba1d2b55b27ed480dc0e01d49884bcca48dc7448b85debd988dab/microsoft/TypeScript/issues/29919 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/9f46d06c3ecba1d2b55b27ed480dc0e01d49884bcca48dc7448b85debd988dab/microsoft/TypeScript/issues/29919 |
| og:image:alt | TypeScript Version: 3.2 Search Terms: mapped tuples rest Code type FuncParams |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | Roaders |
| hostname | github.com |
| expected-hostname | github.com |
| None | b2de8c74e5e61e893155ba46ee41bc66170c1644cb795adefa8386d490f7781c |
| turbo-cache-control | no-preview |
| go-import | github.com/microsoft/TypeScript git https://github.com/microsoft/TypeScript.git |
| octolytics-dimension-user_id | 6154722 |
| octolytics-dimension-user_login | microsoft |
| octolytics-dimension-repository_id | 20929025 |
| octolytics-dimension-repository_nwo | microsoft/TypeScript |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 20929025 |
| octolytics-dimension-repository_network_root_nwo | microsoft/TypeScript |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | d1866027ded575df8a15c731dd8b9986c9483ceb |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width