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