21766886954ed1fbd26963a6b9a23488a445d9c63f83be255faa9a07811474ce325d44224855960e5d8f02c8daf4210937b3bcf0a6b379f1e294cbe3b840d7 1.2 KB

12345678910111213141516
  1. import type { ExtractPropTypes, InjectionKey, StyleValue, __ExtractPublicPropTypes } from 'vue';
  2. export declare const cardProps: {
  3. readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  4. readonly footer: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  5. readonly bodyStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | import("vue").CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | import("vue").CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, "", boolean>;
  6. readonly headerClass: StringConstructor;
  7. readonly bodyClass: StringConstructor;
  8. readonly footerClass: StringConstructor;
  9. readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "always" | "never" | "hover", unknown, undefined, boolean>;
  10. };
  11. export type CardProps = ExtractPropTypes<typeof cardProps>;
  12. export type CardPropsPublic = __ExtractPublicPropTypes<typeof cardProps>;
  13. export interface CardConfigContext {
  14. shadow?: string;
  15. }
  16. export declare const cardContextKey: InjectionKey<CardConfigContext>;