* File reader abstraction for reading files from either local fs or Runtime.
| 44 | * File reader abstraction for reading files from either local fs or Runtime. |
| 45 | */ |
| 46 | interface FileReader { |
| 47 | readFile(filePath: string): Promise<string>; |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Create a FileReader for local filesystem access. |
no outgoing calls
no test coverage detected