I’m using nuxt / typescript. I believe this a typescript thing, but I can’t completely rule out nuxt yet due to its auto importing scheme.
I created a type like so:
<code>export interface Location {
id: string,
myVal: string,
}
</code>
<code>export interface Location {
id: string,
myVal: string,
}
</code>
export interface Location {
id: string,
myVal: string,
}
Upon using this type in another module I found that there seem to be a number of reserved types:
https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API
I’m a little disturbed to find there seem to be a large number of globally reserved types. Furthermore I haven’t seen docs on this? Where do these reserved types come from, and how many are there?
2