debeem-wallet

Remarks

IndexedDB, but with promises: https://github.com/jakearchibald/idb

interface SysUserEntity {
    root: {
        indexes: {
            by-wallet: string;
        };
        key: string;
        value: SysUserItem;
    };
}

Hierarchy

  • DBSchema
    • SysUserEntity

Properties

Properties

root: {
    indexes: {
        by-wallet: string;
    };
    key: string;
    value: SysUserItem;
}

Type declaration

  • indexes: {
        by-wallet: string;
    }
    • by-wallet: string
  • key: string
  • value: SysUserItem