| 9 | import type { Context } from '../Context.js'; |
| 10 | |
| 11 | export interface EventSearchResult { |
| 12 | event: LogEvent; |
| 13 | depth: number; |
| 14 | } |
| 15 | |
| 16 | export class LogEventCache { |
| 17 | private static readonly MAX_CACHE_SIZE = 10; |
nothing calls this directly
no outgoing calls
no test coverage detected