tab-pane.d.ts 829 B

12345678910111213141516
  1. import type { ExtractPropTypes } 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: BooleanConstructor;
  12. readonly disabled: BooleanConstructor;
  13. readonly lazy: BooleanConstructor;
  14. };
  15. export type TabPaneProps = ExtractPropTypes<typeof tabPaneProps>;
  16. export type TabPaneInstance = InstanceType<typeof TabPane> & unknown;