| Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/tabs/src/ |
| Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/tabs/src/types.js |
export type TabsOptionsType = {
id: ?string,
items?: Array<TabOptionsType>,
}
export type TabHeadOptionsType = {
title: string,
description: ?string,
className: ?string,
}
export type TabOptionsType = {
id?: string,
sort?: number,
active?: boolean,
restricted?: boolean,
bannerCode?: string,
helpDeskCode?: string,
head: TabHeadOptionsType | HTMLElement,
body: string | Function | Promise | HTMLElement,
}