import { Table } from "dexie"; export type Account = { id?: number; publicKey: string; identity: string; }; export type AccountsTable = { accounts: Table; }; export const accountsSchema = { accounts: "++id, publicKey, $identity", };