| 28 | } |
| 29 | |
| 30 | interface FileLearnSessionCacheStoreOptions { |
| 31 | cacheFilePath?: string; |
| 32 | ttlMs?: number; |
| 33 | now?: () => number; |
| 34 | } |
| 35 | |
| 36 | export function createFileLearnSessionCacheStore(options: FileLearnSessionCacheStoreOptions = {}): LearnSessionCacheStore { |
| 37 | return new FileLearnSessionCacheStore(options); |
nothing calls this directly
no outgoing calls
no test coverage detected