(fileContent: string)
| 268 | } |
| 269 | |
| 270 | export function getFilesExports(fileContent: string) { |
| 271 | const exports = getAllExports(fileContent); |
| 272 | |
| 273 | return exports; |
| 274 | } |
| 275 | /** |
| 276 | * Gets the file content of the provided file path |
| 277 | * @param filePath File path to read |
no test coverage detected