mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
18 lines
380 B
TypeScript
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> {
|
|
|
|
}
|
|
|
|
}
|