nandorojo / dripsy

🍷 Responsive, unstyled UI primitives for React Native + Web.
https://dripsy.xyz
MIT License
1.99k stars 77 forks source link

TypeScript 4.7 support #219

Closed nandorojo closed 2 years ago

nandorojo commented 2 years ago

It looks like makeTheme is returning any with TS 4.7. I think the solution is to add the new in keyword:

Before:

makeTheme<T extends DripsyBaseTheme>

After:

makeTheme<in T extends DripsyBaseTheme>
nandorojo commented 2 years ago

Actually, this may have just been an issue with my IDE loading up TypeScript.