Remove empty ctor

This commit is contained in:
Jackson Harper
2024-01-30 13:17:26 +08:00
parent 86c80d991f
commit c2327781e1

View File

@ -10,8 +10,6 @@ type ReadingProgressCacheItem = {
export class ReadingProgressDataSource {
private cacheItems: { [id: string]: ReadingProgressCacheItem } = {}
constructor() {}
async getReadingProgress(
libraryItemID: string
): Promise<ReadingProgressCacheItem | undefined> {