| 5 | import Dexie, { EntityTable } from "dexie"; |
| 6 | |
| 7 | class FreeNoteDB extends Dexie { |
| 8 | notes!: EntityTable<Note, "id">; |
| 9 | embeddings!: EntityTable<Embedding, "id">; |
| 10 | chats!: EntityTable<Chat, "id">; |
nothing calls this directly
no outgoing calls
no test coverage detected