hongluan-ui
Version:
Hongluan Component Library for Vue 3
24 lines (23 loc) • 931 B
TypeScript
import type { ExtractPropTypes } from 'vue';
import type TabBar from './tab-bar.vue';
export declare const tabBarProps: {
readonly tabs: import("hongluan-ui/es/utils").EpPropFinalized<import("vue").PropType<{
uid: number;
slots: {
[x: string]: import("vue").Slot;
};
props: {
readonly label: string;
readonly disabled: boolean;
readonly closable: boolean;
readonly lazy: boolean;
readonly name?: import("hongluan-ui/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
};
paneName: string | number;
active: boolean;
index: string;
isClosable: boolean;
}[]>, unknown, unknown, () => [], boolean>;
};
export declare type TabBarProps = ExtractPropTypes<typeof tabBarProps>;
export declare type TabBarInstance = InstanceType<typeof TabBar>;