Files
dsProject/dsBase/WebRoot/html/cdn/lib/components/tabs/src/tab-bar.d.ts

20 lines
722 B
TypeScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
import type { ExtractPropTypes } from 'vue';
export declare const tabBar: {
readonly tabs: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<{
uid: number;
instance: import("vue").ShallowReactive<import("vue").ComponentInternalInstance>;
props: {
label: string;
name: string;
closable: boolean;
disabled: boolean;
lazy: boolean;
};
paneName: string | undefined;
active: boolean;
index: string | undefined;
isClosable: boolean;
}[]>, () => [], unknown, unknown, unknown>;
};
export declare type TabBar = ExtractPropTypes<typeof tabBar>;