Working with `useFetch()`, Typescript and JSON-LD
Hi everyone,
I have an API that responds with an object like so :
I'm currently fetching like this :
It works in my template if I use it like :
but my editor is not happy with the
Can't assign type
to type :
I tried changing the return type of the
Thanks in advance for your help
I have an API that responds with an object like so :
I'm currently fetching like this :
It works in my template if I use it like :
but my editor is not happy with the
transform method : Can't assign type
to type :
I tried changing the return type of the
useFetch() to useFetch<Recipe[]> but it doesn't work either.Thanks in advance for your help
