mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
export abstract class Fido2UserInterfaceService {
|
|
verifyUser: () => Promise<boolean>;
|
|
verifyPresence: () => Promise<boolean>;
|
|
confirmNewCredential: () => Promise<boolean>;
|
|
}
|