We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Playground
Input:
const { x, ...y } = { x: 1, y: 1, z: 1 };
Current Result:
local ____ = {x = 1, y = 1, z = 1} x = ____.x y = __TS__ObjectRest(____, {x = true, y = true})
Expected Result:
local ____ = {x = 1, y = 1, z = 1} x = ____.x y = __TS__ObjectRest(____, {x = true})
Playground
Input:
Current Result:
Expected Result: