@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
58 lines (57 loc) • 1.63 kB
TypeScript
import type { TabPosition, AnimatedConfig } from '../interface';
import type { Key } from '../../../_util/type';
import type { PropType } from 'vue';
export interface TabPanelListProps {
activeKey: Key;
id: string;
rtl: boolean;
animated?: AnimatedConfig;
tabPosition?: TabPosition;
destroyInactiveTabPane?: boolean;
}
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
activeKey: {
type: PropType<Key>;
};
id: {
type: StringConstructor;
};
rtl: {
type: BooleanConstructor;
};
animated: {
type: PropType<AnimatedConfig>;
default: AnimatedConfig;
};
tabPosition: {
type: PropType<TabPosition>;
};
destroyInactiveTabPane: {
type: BooleanConstructor;
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
activeKey: {
type: PropType<Key>;
};
id: {
type: StringConstructor;
};
rtl: {
type: BooleanConstructor;
};
animated: {
type: PropType<AnimatedConfig>;
default: AnimatedConfig;
};
tabPosition: {
type: PropType<TabPosition>;
};
destroyInactiveTabPane: {
type: BooleanConstructor;
};
}>> & Readonly<{}>, {
rtl: boolean;
animated: AnimatedConfig;
destroyInactiveTabPane: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;