Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 572B

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