(options: any)
| 113 | } |
| 114 | |
| 115 | export async function getFirebaseConfig(options: any): Promise<args.FirebaseConfig> { |
| 116 | const projectId = needProjectId(options); |
| 117 | const response = await apiClient.get<args.FirebaseConfig>( |
| 118 | `/v1beta1/projects/${projectId}/adminSdkConfig`, |
| 119 | ); |
| 120 | return response.body; |
| 121 | } |
| 122 | |
| 123 | // If you make changes to this function, run "node scripts/test-functions-config.js" |
| 124 | // to ensure that nothing broke. |
no test coverage detected
searching dependent graphs…