mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
25 lines
638 B
TypeScript
25 lines
638 B
TypeScript
import KeychainServiceDriverBase from './KeychainServiceDriverBase';
|
|
|
|
export default class KeychainServiceDriver extends KeychainServiceDriverBase {
|
|
public override readonly driverId: string = 'mobile-unknown';
|
|
|
|
public async supported(): Promise<boolean> {
|
|
return false;
|
|
}
|
|
|
|
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> {
|
|
|
|
}
|
|
|
|
public async upgradeStorageBackend(_secureKeys: string[], _newDatabaseVersion: number): Promise<void> {
|
|
}
|
|
}
|