(bytes: Uint8Array)
| 83 | ]); |
| 84 | |
| 85 | const sideBand = (bytes: Uint8Array): Uint8Array => { |
| 86 | const payload = new Uint8Array(bytes.length + 1); |
| 87 | payload[0] = 1; |
| 88 | payload.set(bytes, 1); |
| 89 | return concat([pktLine("NAK\n"), pktLine(payload), FLUSH]); |
| 90 | }; |
| 91 | |
| 92 | const makeSyncStore = (): AppsStore & { |
| 93 | readonly sources: Map<string, AppSourceRecord>; |
no test coverage detected