react-native-navigation的迁移库

LayoutNode.ts 158B

12345678910
  1. import { LayoutType } from "./LayoutType";
  2. export interface LayoutNode {
  3. id: string;
  4. type: LayoutType;
  5. data: object;
  6. children: Array<LayoutNode>;
  7. }