1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/services/keychain/KeychainServiceDriver.dummy.ts

18 lines
380 B
TypeScript

import KeychainServiceDriverBase from './KeychainServiceDriverBase';
export default class KeychainServiceDriver extends KeychainServiceDriverBase {
async setPassword(/* name:string, password:string*/): Promise<boolean> {
return false;
}
async password(/* name:string*/): Promise<string> {
return null;
}
async deletePassword(/* name:string*/): Promise<void> {
}
}