Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/tabs/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/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,
}