1234567891011121314151617181920212223242526 |
- const { isEmpty } = require('lodash');
-
- class BottomTabs {
- /**
- * @property {string} [currentTabId]
- * @property {number} [currentTabIndex]
- * @property {boolean} [hidden]
- * @property {boolean} [animateHide]
- * @property {string} [testID]
- * @property {boolean} [drawUnder]
- */
- constructor(params) {
- if (isEmpty(params)) {
- return;
- }
- this.currentTabId = params.currentTabId;
- this.currentTabIndex = params.currentTabIndex;
- this.hidden = params.hidden;
- this.animateHide = params.animateHide;
- this.testID = params.testID;
- this.drawUnder = params.drawUnder;
- }
- }
-
- module.exports = BottomTabs;
|