mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 21:23:34 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
export class PasswordlessAuthRequest {
|
|
constructor(
|
|
readonly key: string,
|
|
readonly masterPasswordHash: string,
|
|
readonly deviceIdentifier: string,
|
|
readonly requestApproved: boolean,
|
|
) {}
|
|
}
|