mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
10 lines
360 B
TypeScript
10 lines
360 B
TypeScript
export abstract class ApiKeyService {
|
|
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>;
|
|
}
|