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.
17 lines
942 B
17 lines
942 B
|
2 years ago
|
import type { Component, ExtractPropTypes } from 'vue';
|
||
|
|
import type Result from './result.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").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly subTitle: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly icon: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "success" | "warning" | "error" | "info", unknown, "info", boolean>;
|
||
|
|
};
|
||
|
|
export declare type ResultProps = ExtractPropTypes<typeof resultProps>;
|
||
|
|
export declare type ResultInstance = InstanceType<typeof Result>;
|