2019-01-23
1668
#react#typescript
Dan Vanderkam
262
Jan 23, 2019 ⋅ 5 min read

How TypeScript breaks referential transparency

Dan Vanderkam Dan is a Principal Software Engineer at Sidewalk Labs and the author of Effective TypeScript: 62 Specific Ways to Improve Your TypeScript (O'Reilly 2019). He blogs regularly at effectivetypescript.com.

Recent posts:

Bootstrap Adoption Guide Overview Examples Alternatives

Bootstrap adoption guide: Overview, examples, and alternatives

Bootstrap stands out as a user-friendly, versatile framework. It’s perfect for quick development and customizable for unique design needs.

Elijah Asaolu
Jan 9, 2024 ⋅ 12 min read
Multithreading In Node Js With Worker Threads

Multithreading in Node.js with worker threads

Learn about worker_threads, the Web Workers API, and find some inspiration for how to use web workers to handle complex tasks.

Alberto Gimeno
Jan 8, 2024 ⋅ 15 min read
Using Deno With Jupyter Notebook to Build a Data Dashboard

Using Deno with Jupyter Notebook to build a data dashboard

Deno’s integration with Jupyter Notebook opens up new possibilities for data scientists, giving them access to Deno’s extensive module ecosystem.

Agustinus Theodorus
Jan 8, 2024 ⋅ 8 min read
Sanjeev Banerji Leader Spotlight

Leader Spotlight: Leveraging relationships with Sanjeev Banerji

Sanjeev Banerji talks about aspects of technology that are more prevalent in healthcare and shares an initiative that helped him realize the importance of relationship building.

Jessica Srinivas
Jan 5, 2024 ⋅ 7 min read
View all posts

One Reply to "How TypeScript breaks referential transparency"

  1. Nowadays in ts we have `as const` which will type out a tuple as the type you expect. (It also works for deeply nested objects)

Leave a Reply