UNPKG

600 BTypeScriptView Raw
1import { Vue } from "./vue";
2import "./umd";
3
4export default Vue;
5
6export {
7 CreateElement,
8 VueConstructor
9} from "./vue";
10
11export {
12 Component,
13 AsyncComponent,
14 ComponentOptions,
15 FunctionalComponentOptions,
16 RenderContext,
17 PropType,
18 PropOptions,
19 ComputedOptions,
20 WatchHandler,
21 WatchOptions,
22 WatchOptionsWithHandler,
23 DirectiveFunction,
24 DirectiveOptions
25} from "./options";
26
27export {
28 PluginFunction,
29 PluginObject
30} from "./plugin";
31
32export {
33 VNodeChildren,
34 VNodeChildrenArrayContents,
35 VNode,
36 VNodeComponentOptions,
37 VNodeData,
38 VNodeDirective
39} from "./vnode";