10 lines
533 B
TypeScript
10 lines
533 B
TypeScript
import type { ExtractPropTypes } from 'vue';
|
|
export declare const tabPaneProps: {
|
|
readonly label: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>;
|
|
readonly name: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>;
|
|
readonly closable: BooleanConstructor;
|
|
readonly disabled: BooleanConstructor;
|
|
readonly lazy: BooleanConstructor;
|
|
};
|
|
export declare type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>;
|