| 34 | } |
| 35 | |
| 36 | export interface LocalPracticeCard { |
| 37 | id: string |
| 38 | sessionId: string |
| 39 | cardId: string |
| 40 | isCorrect?: boolean |
| 41 | isPracticed: boolean |
| 42 | practicedAt?: number |
| 43 | synced?: boolean |
| 44 | } |
| 45 | |
| 46 | export class FlashcardsDB extends Dexie { |
| 47 | collections!: Table<LocalCollection, string> |
nothing calls this directly
no outgoing calls
no test coverage detected