| 1 | import Dexie, { type Table } from 'dexie' |
| 2 | |
| 3 | export interface LocalCollection { |
| 4 | id: string |
| 5 | name: string |
| 6 | prompt?: string | null |
| 7 | createdAt: number |
| 8 | updatedAt: number |
| 9 | synced?: boolean |
| 10 | } |
| 11 | |
| 12 | export interface LocalCard { |
| 13 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected