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 610B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. PropType,
  15. PropOptions,
  16. ComputedOptions,
  17. WatchHandler,
  18. WatchOptions,
  19. WatchOptionsWithHandler,
  20. DirectiveFunction,
  21. DirectiveOptions
  22. } from "./options";
  23. export {
  24. PluginFunction,
  25. PluginObject
  26. } from "./plugin";
  27. export {
  28. VNodeChildren,
  29. VNodeChildrenArrayContents,
  30. VNode,
  31. VNodeComponentOptions,
  32. VNodeData,
  33. VNodeDirective
  34. } from "./vnode";