Type inference is lost outside of the pinia store

96 Views Asked by At

This is my store:

export const useMyStore = defineStore('myStore', () => {
    const { data, pending, execute } = useFetch<{id: string, joke:string, status: number}>('https://icanhazdadjoke.com/', {
        immediate: false,
        headers: {
            Accept: 'application/json'
        },
        pick: ['joke']
    });
    return { data, pending, execute }
});

Inside the store, the type of data is correctly inferred as:

data: globalThis.Ref<{id: string, joke: string, status: number} | null>

When using it somwhere else, the type inference is lost the type is "any":

enter image description here

Why is that ?

1

There are 1 best solutions below

0
On BEST ANSWER

So this is a bit weird, but:

with the mustache syntax it shows up as "any" without auto-complete: enter image description here enter image description here

...but when used in a template like this, it shows up as "any", but autocomplete works:

enter image description here enter image description here

Go figure It might be a Webstorm Problem.