icon.d.ts 830 B

1234567891011121314151617181920212223242526272829303132
  1. import * as vue from "vue";
  2. import { Component } from "vue";
  3. import { Loading } from "@element-plus/icons-vue";
  4. //#region ../../packages/utils/vue/icon.d.ts
  5. type IconPropType = string | Component;
  6. declare const iconPropType: vue.PropType<string | Component>;
  7. declare const CloseComponents: {
  8. Close: any;
  9. };
  10. declare const TypeComponents: {
  11. Close: any;
  12. SuccessFilled: any;
  13. InfoFilled: any;
  14. WarningFilled: any;
  15. CircleCloseFilled: any;
  16. };
  17. declare const TypeComponentsMap: {
  18. primary: any;
  19. success: any;
  20. warning: any;
  21. error: any;
  22. info: any;
  23. };
  24. declare const ValidateComponentsMap: {
  25. validating: any;
  26. success: any;
  27. error: any;
  28. };
  29. type IconComponent = typeof Loading;
  30. //#endregion
  31. export { CloseComponents, IconComponent, IconPropType, TypeComponents, TypeComponentsMap, ValidateComponentsMap, iconPropType };