UNPKG

element-plus

Version:

A Component Library for Vue 3

21 lines (20 loc) 732 B
import type { ExtractPublicPropTypes } from 'vue'; import type Bar from './bar.vue'; export interface BarProps { always?: boolean; minSize: number; } /** * @deprecated Removed after 3.0.0, Use `BarProps` instead. */ export declare const barProps: { readonly always: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>; readonly minSize: { readonly type: import("vue").PropType<number>; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type BarPropsPublic = ExtractPublicPropTypes<typeof barProps>; export type BarInstance = InstanceType<typeof Bar> & unknown;