mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-06 16:28:16 +00:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
![]() |
import { Tab, TabProperties, ITabProperties } from '@datahub/data-models/constants/entity/shared/tabs';
|
||
|
|
||
|
/**
|
||
|
* Lists the TabProperties for a list of TabIds
|
||
|
* @param {Array<Tab>} tabIds
|
||
|
*/
|
||
|
export const getTabPropertiesFor = (tabIds: Array<Tab>): Array<ITabProperties> =>
|
||
|
tabIds.map(tabId => TabProperties[tabId]);
|