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 11import Vue from 'vue'
2+ import type { PluginFunction , PluginObject } from 'vue'
23declare const isVue2 : boolean
34declare const isVue3 : boolean
45declare const Vue2 : Vue | undefined
56declare const version : string
67declare const install : ( vue ?: Vue ) => void
7- /**
8+ /**
89 * @deprecated To avoid bringing in all the tree-shakable modules, this API has been deprecated. Use `Vue2` or named exports instead.
910 * Refer to https://github.com/vueuse/vue-demi/issues/41
1011 */
1112declare const V : Vue
1213
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'
1323export * from '@vue/composition-api'
1424export {
1525 V as Vue ,
You can’t perform that action at this time.
0 commit comments