mirror of
https://github.com/bitwarden/browser
synced 2026-01-03 09:03:32 +00:00
* convert some pma models * some client work * fix comment * add ui classes * finish implementing login * more client work * update cookie comment * vault class * some chunk work in client * convert to array * parse chunks with binary reader * parsing and crypto * parse private keys * move fetching to rest client * houskeeping * set cookies if not browser * fix field name changes * extract crypto utils * error checks on seek * fix build errors * fix lint errors * rename lib folder to access * fixes * fix seek function * support opening federated vaults * add postJson rest method * add user type and k2 apis * pass mode
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
export class Account {
|
|
id: string;
|
|
name: string;
|
|
username: string;
|
|
password: string;
|
|
url: string;
|
|
path: string;
|
|
notes: string;
|
|
totp: string;
|
|
isFavorite: boolean;
|
|
isShared: boolean;
|
|
}
|