()
| 143 | } |
| 144 | |
| 145 | export async function* makeHistoryReader(): AsyncGenerator<HistoryEntry> { |
| 146 | for await (const entry of makeLogEntryReader()) { |
| 147 | yield await logEntryToHistoryEntry(entry) |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | export type TimestampedHistoryEntry = { |
| 152 | display: string |
no test coverage detected