import Dexie, { Table } from 'dexie'; import type { User } from './nostr/types'; export class SnortDB extends Dexie { users!: Table; constructor() { super('snortDB'); this.version(1).stores({ users: '++pubkey, name, display_name, picture, nip05' // Primary key and indexed props }); } } export const db = new SnortDB();