MCPcopy Index your code
hub / github.com/codeaashu/claude-code / makeHistoryReader

Function makeHistoryReader

src/history.ts:145–149  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

useHistorySearchFunction · 0.85

Calls 2

makeLogEntryReaderFunction · 0.85
logEntryToHistoryEntryFunction · 0.85

Tested by

no test coverage detected