()
| 5 | } |
| 6 | |
| 7 | export const availableTargets = () => |
| 8 | Object.keys(targets).map<AvailableTarget>(targetId => ({ |
| 9 | ...targets[targetId as TargetId].info, |
| 10 | clients: Object.keys(targets[targetId as TargetId].clientsById).map( |
| 11 | clientId => targets[targetId as TargetId].clientsById[clientId].info, |
| 12 | ), |
| 13 | })); |
| 14 | |
| 15 | export const extname = (targetId: TargetId) => targets[targetId]?.info.extname || ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…