export type Account = { id?: number; publicKey: string; mnemonic: string; identity: string; dateCreated: number; }; // mark encrypted field by starting with a $ character export const accountsSchema = { accounts: "++id, publicKey, $mnemonic, $identity, dateCreated", };