I'm new to Typescript and currently trying to build a Vue Apps with Typescript. I wanted to make an interface that could be accessed globaly to any components, so I made a file called ~/utils/types.ts
// types.ts
export interface Url {
name: string
params?: Object
query?: Object
}
export interface Links {
text: string
url: Url
}
When I tried to import it on my component, it gave me warning like below

It actually works, but it shows that warning in VScode. What should I do to solve this?