1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/lib/services/keychain/KeychainServiceDriverBase.ts

26 lines
549 B
TypeScript

abstract class KeychainServiceDriverBase {
private appId_: string;
private clientId_: string;
constructor(appId: string, clientId: string) {
this.appId_ = appId;
this.clientId_ = clientId;
}
get appId(): string {
return this.appId_;
}
get clientId(): string {
return this.clientId_;
}
abstract async setPassword(name: string, password: string): Promise<boolean>;
abstract async password(name: string): Promise<string>;
abstract async deletePassword(name: string): Promise<void>;
}
export default KeychainServiceDriverBase;