Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.
Closed

n/a #200

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ yarn-error.log
# CocoaPods
Pods/

dist/
# dist/ - Commented out to allow Git dependencies to work

# Debug log from lerna
lerna-debug.log
Expand Down
4 changes: 4 additions & 0 deletions fixture/dist/App.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/// <reference types="react" />
declare const App: () => JSX.Element;
export default App;
//# sourceMappingURL=App.d.ts.map
1 change: 1 addition & 0 deletions fixture/dist/App.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 60 additions & 0 deletions fixture/dist/App.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions fixture/dist/App.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions fixture/dist/constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
export declare const NavigationKeys: {
EXAMPLES: "Examples";
PERFORMANCE: "Performance";
TAB_NAVIGATOR: "TabNavigator";
TAB_NAVIGATOR_SCREEN_1: "TabNavigatorScreen1";
TAB_NAVIGATOR_SCREEN_2: "TabNavigatorScreen2";
FAST_RENDER_PASSES_SCREEN: "FastRenderPassesScreen";
CONDITIONAL_RENDERING_SCREEN: "ConditionalRenderingScreen";
DRAWER_NAVIGATOR: "DrawerNavigator";
DRAWER_NAVIGATOR_SCREEN_1: "DrawerNavigatorScreen1";
DRAWER_NAVIGATOR_SCREEN_2: "DrawerNavigatorScreen2";
FLAT_LIST_SCREEN: "FlatListScreen";
NESTED_NAVIGATION_SCREEN: "NestedNavigationScreen";
NESTED_PROFILER_CONTEXT: "NestedProfilerContext";
NESTED_CONTEXT_SCREEN: "NestedContextScreen";
INNER_NESTED_CONTEXT_SCREEN: "InnerNestedContextScreen";
};
declare type ValueOf<T> = T[keyof T];
export declare type RootStackParamList = {
[key in ValueOf<typeof NavigationKeys>]: undefined;
};
export {};
//# sourceMappingURL=constants.d.ts.map
1 change: 1 addition & 0 deletions fixture/dist/constants.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions fixture/dist/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions fixture/dist/constants.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions fixture/dist/examples/ConditionalRenderingScreen.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/// <reference types="react" />
declare const ConditionalRenderingScreen: () => JSX.Element;
export default ConditionalRenderingScreen;
//# sourceMappingURL=ConditionalRenderingScreen.d.ts.map
1 change: 1 addition & 0 deletions fixture/dist/examples/ConditionalRenderingScreen.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions fixture/dist/examples/ConditionalRenderingScreen.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions fixture/dist/examples/ConditionalRenderingScreen.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions fixture/dist/examples/DrawerNavigator.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/// <reference types="react" />
declare const DrawerNavigator: () => JSX.Element;
export default DrawerNavigator;
//# sourceMappingURL=DrawerNavigator.d.ts.map
1 change: 1 addition & 0 deletions fixture/dist/examples/DrawerNavigator.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 58 additions & 0 deletions fixture/dist/examples/DrawerNavigator.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading