We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ca41c commit e8e93e4Copy full SHA for e8e93e4
packages/pinia/src/globalExtensions.ts
@@ -41,8 +41,10 @@ declare module 'vue/types/options' {
41
*/
42
// @ts-ignore: works on Vue 3, fails in Vue 2
43
declare module 'vue' {
44
- export interface GlobalComponents {}
45
- export interface ComponentCustomProperties {
+ // This seems to be needed to not break auto import types based on the order
+ // https://github.com/vuejs/pinia/pull/2730
46
+ interface GlobalComponents {}
47
+ interface ComponentCustomProperties {
48
/**
49
* Access to the application's Pinia
50
0 commit comments