result.vue.d.ts 1.8 KB

12345678910111213141516171819202122232425262728293031
  1. declare var __VLS_1: {}, __VLS_8: {}, __VLS_10: {}, __VLS_12: {};
  2. type __VLS_Slots = {} & {
  3. icon?: (props: typeof __VLS_1) => any;
  4. } & {
  5. title?: (props: typeof __VLS_8) => any;
  6. } & {
  7. 'sub-title'?: (props: typeof __VLS_10) => any;
  8. } & {
  9. extra?: (props: typeof __VLS_12) => any;
  10. };
  11. declare const __VLS_base: import("vue").DefineComponent<{
  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. }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  16. readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  17. readonly subTitle: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  18. readonly icon: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "error" | "primary" | "success" | "warning" | "info", unknown, "info", boolean>;
  19. }>>, {
  20. readonly title: string;
  21. readonly icon: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "error" | "primary" | "success" | "warning" | "info", unknown>;
  22. readonly subTitle: string;
  23. }, {}>;
  24. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  25. declare const _default: typeof __VLS_export;
  26. export default _default;
  27. type __VLS_WithSlots<T, S> = T & {
  28. new (): {
  29. $slots: S;
  30. };
  31. };