| 123456789101112131415161718192021222324252627 |
- import type { VueNode } from '../_util/type';
- export interface ErrorListProps {
- errors?: VueNode[];
- /** @private Internal Usage. Do not use in your production */
- help?: VueNode;
- onErrorVisibleChanged?: (visible: boolean) => void;
- }
- declare const _default: import("vue").DefineComponent<Readonly<{
- help?: any;
- errors?: any;
- onErrorVisibleChanged?: any;
- helpStatus?: any;
- warnings?: any;
- }>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
- help?: any;
- errors?: any;
- onErrorVisibleChanged?: any;
- helpStatus?: any;
- warnings?: any;
- }>>>, {
- readonly help?: any;
- readonly errors?: any;
- readonly onErrorVisibleChanged?: any;
- readonly helpStatus?: any;
- readonly warnings?: any;
- }, {}>;
- export default _default;
|