As I delve into the world of Partial in TypeScript, I am referencing the examples from the Fast-dna repository. However, I've come to realize that my implementation of Partial
differs from theirs.
In their repository, Partial
is defined as:
https://i.sstatic.net/3QQ6J.png
While in my implementation, it appears like this:
https://i.sstatic.net/uyU5h.png
I couldn't help but notice that they are using Babel, whereas I am not. Could this be the reason for the disparity?
Nevertheless, I am perplexed by how two different implementations have surfaced when working with typescript. What's more, I am utilizing Create React App with a TypeScript template.