UNPKG

element-plus

Version:

A Component Library for Vue 3

12 lines (11 loc) 662 B
import type { ExtractPropTypes } from 'vue'; import type TabPane from './tab-pane.vue'; export declare const tabPaneProps: { readonly label: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly name: import("element-plus/es/utils").BuildPropReturn<readonly [StringConstructor, NumberConstructor], "", unknown, unknown, unknown>; readonly closable: BooleanConstructor; readonly disabled: BooleanConstructor; readonly lazy: BooleanConstructor; }; export declare type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>; export declare type TabPaneInstance = InstanceType<typeof TabPane>;