UNPKG

element-plus

Version:

A Component Library for Vue 3

15 lines (14 loc) 844 B
import type { Component, ExtractPropTypes } from 'vue'; export declare const IconMap: { readonly success: "icon-success"; readonly warning: "icon-warning"; readonly error: "icon-error"; readonly info: "icon-info"; }; export declare const IconComponentMap: Record<typeof IconMap[keyof typeof IconMap], Component>; export declare const resultProps: { readonly title: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly subTitle: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly icon: import("element-plus/es/utils/props").BuildPropReturn<unknown, "info", unknown, "error" | "success" | "warning" | "info", unknown>; }; export declare type ResultProps = ExtractPropTypes<typeof resultProps>;