| 76 | // ============================================================================ |
| 77 | |
| 78 | export interface EnvironmentConfig { |
| 79 | name: string; |
| 80 | serverPort: number; |
| 81 | expoPort: number; |
| 82 | createdAt: string; |
| 83 | template: string; |
| 84 | projectTemplate: string; |
| 85 | projectPath: string; |
| 86 | authenticatedWebUrl?: string; |
| 87 | cliCommand?: string; |
| 88 | } |
| 89 | |
| 90 | interface CurrentConfig { |
| 91 | current: string; |
nothing calls this directly
no outgoing calls
no test coverage detected