| 31 | } |
| 32 | |
| 33 | export interface BinaryConfig { |
| 34 | readonly binaries: { |
| 35 | [platform: string]: BinaryFileData[], |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | function parseBinaryFileData(mapEntry: {[name: string]: string|undefined}): BinaryFileData { |
| 40 | if (mapEntry['url'] === undefined || mapEntry['sha256'] === undefined || mapEntry['targetFile'] === undefined) { |
nothing calls this directly
no outgoing calls
no test coverage detected