react-native-navigation的迁移库

index.ts 495B

1234567891011121314
  1. import { NavigationRoot } from './Navigation';
  2. const navigationSingleton = new NavigationRoot();
  3. export const Navigation = navigationSingleton;
  4. export * from './adapters/Constants';
  5. export * from './interfaces/ComponentEvents';
  6. export * from './interfaces/Events';
  7. export * from './interfaces/EventSubscription';
  8. export * from './interfaces/Layout';
  9. export * from './interfaces/Options';
  10. export * from './interfaces/NavigationComponent';
  11. export * from './interfaces/NavigationComponentProps';