@oljimenez.bsky.social

I love @tanstack.com Query, but i really wish some day we could have this @tkdodo.eu any idea how could this be? I know that's something can't be on RQ core, but i could build a package if i've the correct idea. Maybe not fetch because it's too native but a wrapper around fetch.

Bild

@typeholes.bsky.social Hi, i've a TS performance question for you. Is the following TS types code ``` type Example<T extends Record<string, boolean>> = { ...some logic } ``` more performant than this ``` type Example<T> = { ...some logic } ``` Or this make things slower by typechecking?