UNPKG

@qvant/qui-max

Version:

A Vue 3 Design system for Web.

43 lines (42 loc) 1.32 kB
import type { QTabPaneInstance } from './src/types'; import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { SFCWithInstall } from '../../../types/helpers'; export declare const QTabPane: SFCWithInstall<DefineComponent<{ name: { type: StringConstructor; required: true; }; title: { type: StringConstructor; required: true; }; width: { type: (StringConstructor | NumberConstructor)[]; default: null; }; disabled: { type: BooleanConstructor; default: boolean; }; }, QTabPaneInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{ name: { type: StringConstructor; required: true; }; title: { type: StringConstructor; required: true; }; width: { type: (StringConstructor | NumberConstructor)[]; default: null; }; disabled: { type: BooleanConstructor; default: boolean; }; }>>, { disabled: boolean; width: string | number; }>>; export type { QTabPaneProps, QTabPaneInstance } from './src/types';