UNPKG

element-plus

Version:

A Component Library for Vue 3

10 lines (9 loc) 764 B
import type Card from './card.vue'; import type { ExtractPropTypes, StyleValue } from 'vue'; export declare const cardProps: { readonly header: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>; readonly bodyStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => StyleValue & {}) | (() => StyleValue) | ((new (...args: any[]) => StyleValue & {}) | (() => StyleValue))[], unknown, unknown, "", boolean>; readonly shadow: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "hover" | "always" | "never", unknown, "always", boolean>; }; export declare type CardProps = ExtractPropTypes<typeof cardProps>; export declare type CardInstance = InstanceType<typeof Card>;