15e1a8e2f3902ab4bee90fa36eae5f6601e0a010a6de34b18d58efd0a6b639aeaaaed5fb8f1f5d5c165c904efe80bc0fe94f8031e47529f46b9703bca2433f 1.1 KB

123456789101112131415161718
  1. import type { Component, ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type Result from './result.vue';
  3. export declare const IconMap: {
  4. readonly primary: "icon-primary";
  5. readonly success: "icon-success";
  6. readonly warning: "icon-warning";
  7. readonly error: "icon-error";
  8. readonly info: "icon-info";
  9. };
  10. export declare const IconComponentMap: Record<typeof IconMap[keyof typeof IconMap], Component>;
  11. export declare const resultProps: {
  12. readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  13. readonly subTitle: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  14. readonly icon: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "error" | "primary" | "success" | "warning" | "info", unknown, "info", boolean>;
  15. };
  16. export type ResultProps = ExtractPropTypes<typeof resultProps>;
  17. export type ResultPropsPublic = __ExtractPublicPropTypes<typeof resultProps>;
  18. export type ResultInstance = InstanceType<typeof Result> & unknown;