index.d.ts 598 B

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