(name: string, contents: string)
| 17 | } |
| 18 | |
| 19 | function textFile(name: string, contents: string): File { |
| 20 | return buildTextFile(name, contents); |
| 21 | } |
| 22 | |
| 23 | function binaryFile(name: string, contents: string): File { |
| 24 | return buildBinaryFile(name, contents); |
no test coverage detected