(cacheDir: string)
| 26 | ) {} |
| 27 | |
| 28 | static empty(cacheDir: string): EventsFileStore { |
| 29 | return new EventsFileStore(cacheDir, emptyEventsDocument()); |
| 30 | } |
| 31 | |
| 32 | static async load(cacheDir: string): Promise<EventsFileStore> { |
| 33 | try { |
no test coverage detected