UNPKG

react-native-navigation

Version:

React Native Navigation - truly native navigation for iOS and Android

18 lines (17 loc) 416 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Node { nodeId; data; type; // options: Options; parentNode; constructor(layout, type, parentNode) { this.nodeId = layout.id; this.data = layout.data; // this.options = layout.data.options; this.parentNode = parentNode; this.type = type; } } exports.default = Node;