File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
import Vue from 'vue'
2
+ import type { PluginFunction , PluginObject } from 'vue'
2
3
declare const isVue2 : boolean
3
4
declare const isVue3 : boolean
4
5
declare const Vue2 : Vue | undefined
5
6
declare const version : string
6
7
declare const install : ( vue ?: Vue ) => void
7
- /**
8
+ /**
8
9
* @deprecated To avoid bringing in all the tree-shakable modules, this API has been deprecated. Use `Vue2` or named exports instead.
9
10
* Refer to https://github.com/vueuse/vue-demi/issues/41
10
11
*/
11
12
declare const V : Vue
12
13
14
+ /**
15
+ * DebuggerEvent is a Vue 3 development only feature. This type cannot exist in Vue 2.
16
+ */
17
+ export declare type DebuggerEvent = never
18
+
19
+ // accept no generic because Vue 3 doesn't accept any
20
+ // https://github.com/vuejs/vue-next/pull/2758/
21
+ export declare type Plugin = PluginObject < any > | PluginFunction < any >
22
+ export type { VNode } from 'vue'
13
23
export * from '@vue/composition-api'
14
24
export {
15
25
V as Vue ,
You can’t perform that action at this time.
0 commit comments