1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00
Files
browser/libs/common/src/abstractions/fido2/fido2-user-interface.service.abstraction.ts
2022-12-16 10:13:52 +01:00

6 lines
180 B
TypeScript

export abstract class Fido2UserInterfaceService {
verifyUser: () => Promise<boolean>;
verifyPresence: () => Promise<boolean>;
confirmNewCredential: () => Promise<boolean>;
}