mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
18 lines
401 B
TypeScript
18 lines
401 B
TypeScript
import KeychainServiceDriverBase from './KeychainServiceDriverBase';
|
|
|
|
export default class KeychainServiceDriver extends KeychainServiceDriverBase {
|
|
|
|
public async setPassword(/* name:string, password:string*/): Promise<boolean> {
|
|
return false;
|
|
}
|
|
|
|
public async password(/* name:string*/): Promise<string> {
|
|
return null;
|
|
}
|
|
|
|
public async deletePassword(/* name:string*/): Promise<void> {
|
|
|
|
}
|
|
|
|
}
|