[Vuejs]-Where are Vue 2's ComponentDefinition and ComponentConstructor types defined?

0👍

Vue documentation isn’t generated from TypeScript types, these are pseudo-types.

Vue has Component type that refers to some Vue component and corresponds to ComponentDefinition | ComponentConstructor part.

Leave a comment