CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
types.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 9d7a803 | 1 | // Navigation param types — extracted to a separate file to break circular imports. |
| 2 | // Screens import from here; navigators import from here. | |
| 3 | ||
| 4 | export type MainStackParamList = { | |
| 5 | Dashboard: undefined; | |
| 6 | RepoList: undefined; | |
| 7 | RepoDetail: { owner: string; repo: string }; | |
| 8 | FileViewer: { owner: string; repo: string; path: string; ref: string }; | |
| 9 | IssueList: { owner: string; repo: string }; | |
| 10 | IssueDetail: { owner: string; repo: string; number: number }; | |
| 11 | PullList: { owner: string; repo: string }; | |
| 12 | PullDetail: { owner: string; repo: string; number: number }; | |
| 13 | }; |