ErrorList.d.ts 1.0 KB

12345678910111213141516171819202122232425262728
  1. import type { VueNode } from '../_util/type';
  2. export interface ErrorListProps {
  3. errors?: VueNode[];
  4. /** @private Internal Usage. Do not use in your production */
  5. help?: VueNode;
  6. /** @private Internal Usage. Do not use in your production */
  7. onDomErrorVisibleChange?: (visible: boolean) => void;
  8. }
  9. declare const _default: import("vue").DefineComponent<Readonly<{
  10. help?: any;
  11. errors?: any;
  12. onDomErrorVisibleChange?: any;
  13. helpStatus?: any;
  14. warnings?: any;
  15. }>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
  16. help?: any;
  17. errors?: any;
  18. onDomErrorVisibleChange?: any;
  19. helpStatus?: any;
  20. warnings?: any;
  21. }>>>, {
  22. readonly help?: any;
  23. readonly errors?: any;
  24. readonly onDomErrorVisibleChange?: any;
  25. readonly helpStatus?: any;
  26. readonly warnings?: any;
  27. }>;
  28. export default _default;