5585cca7f604a490b03ade3046cf270986c055ab45fae541d68cad8808171dd9fc53a169ecb4749bebf63af6bb8db05d1708a46fdc39f041850af80c15d6be 1022 B

1234567891011121314151617
  1. import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
  2. import type TabPane from './tab-pane.vue';
  3. export declare const tabPaneProps: {
  4. readonly label: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  5. readonly name: {
  6. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
  7. readonly required: false;
  8. readonly validator: ((val: unknown) => boolean) | undefined;
  9. __epPropKey: true;
  10. };
  11. readonly closable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
  12. readonly disabled: BooleanConstructor;
  13. readonly lazy: BooleanConstructor;
  14. };
  15. export type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>;
  16. export type TabPanePropsPublic = __ExtractPublicPropTypes<typeof tabPaneProps>;
  17. export type TabPaneInstance = InstanceType<typeof TabPane> & unknown;