Skip to content

Instantly share code, notes, and snippets.

@joethephish
Last active December 19, 2019 15:18
Show Gist options
  • Save joethephish/e22b53f0ae4212137dca1bb900b6f1f1 to your computer and use it in GitHub Desktop.
Save joethephish/e22b53f0ae4212137dca1bb900b6f1f1 to your computer and use it in GitHub Desktop.
Default param causes ts-check to fail
const Obj = {
x: 1,
f: (y = Obj.x) => {}
};
Obj.x; // No definition found for 'x'
@joethephish
Copy link
Author

Hah, nice! Happy holidays!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment