mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
Persist API key creds for token refresh. (#414)
* Persist API key creds for token refresh. * Linter fixes
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
export abstract class ApiKeyService {
|
||||
setInformation: (clientId: string) => Promise<any>;
|
||||
setInformation: (clientId: string, clientSecret: string) => Promise<any>;
|
||||
clear: () => Promise<any>;
|
||||
getClientId: () => Promise<string>;
|
||||
getClientSecret: () => Promise<string>;
|
||||
getEntityType: () => Promise<string>;
|
||||
getEntityId: () => Promise<string>;
|
||||
isAuthenticated: () => Promise<boolean>;
|
||||
|
||||
Reference in New Issue
Block a user