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:
@@ -0,0 +1,10 @@
|
||||
export interface CredentialRegistrationParams {
|
||||
rp: {
|
||||
id?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export abstract class Fido2Service {
|
||||
createCredential: (params: CredentialRegistrationParams) => unknown;
|
||||
assertCredential: () => unknown;
|
||||
}
|
||||
Reference in New Issue
Block a user