mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 05:03:33 +00:00
11 lines
391 B
TypeScript
11 lines
391 B
TypeScript
import { PrfKey } from "../../../../types/key";
|
|
import { WebAuthnLoginAssertionResponseRequest } from "../../../services/webauthn-login/request/webauthn-login-assertion-response.request";
|
|
|
|
export class WebAuthnLoginCredentialAssertionView {
|
|
constructor(
|
|
readonly token: string,
|
|
readonly deviceResponse: WebAuthnLoginAssertionResponseRequest,
|
|
readonly prfKey?: PrfKey,
|
|
) {}
|
|
}
|