1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[EC-598] feat: implement calls to new service

This commit is contained in:
Andreas Coroiu
2022-11-18 15:03:57 +01:00
parent e52e3dba45
commit 88ebb6a4b0
7 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
export interface CredentialRegistrationParams {
rp: {
id?: string;
};
}
export abstract class Fido2Service {
createCredential: (params: CredentialRegistrationParams) => unknown;
assertCredential: () => unknown;
}