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