index.d.ts 554 B

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