card.vue.d.ts 2.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. declare function __VLS_template(): {
  2. header?(_: {}): any;
  3. default?(_: {}): any;
  4. footer?(_: {}): any;
  5. };
  6. declare const __VLS_component: import("vue").DefineComponent<{
  7. readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  8. readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  9. readonly bodyStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown, "", boolean>;
  10. readonly headerClass: StringConstructor;
  11. readonly bodyClass: StringConstructor;
  12. readonly footerClass: StringConstructor;
  13. readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, "always", boolean>;
  14. }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  15. readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  16. readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  17. readonly bodyStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | import("vue").StyleValue[]) | (() => import("vue").StyleValue))[], unknown, unknown, "", boolean>;
  18. readonly headerClass: StringConstructor;
  19. readonly bodyClass: StringConstructor;
  20. readonly footerClass: StringConstructor;
  21. readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, "always", boolean>;
  22. }>>, {
  23. readonly footer: string;
  24. readonly header: string;
  25. readonly bodyStyle: import("vue").StyleValue;
  26. readonly shadow: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "always" | "never" | "hover", unknown>;
  27. }>;
  28. declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
  29. export default _default;
  30. type __VLS_WithTemplateSlots<T, S> = T & {
  31. new (): {
  32. $slots: S;
  33. };
  34. };