1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/ReactNativeClient/lib/services/keychain/KeychainServiceDriverBase.ts

26 lines
536 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;