// Type definitions for keytar 4.0.2 // Project: http://atom.github.io/node-keytar/ // Definitions by: Milan Burda , Brendan Forster , Hari Juturu // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /** * Get the stored password for the service and account. * * @param service The string service name. * @param account The string account name. * * @returns A promise for the password string. */ export declare function getPassword(service: string, account: string): Promise; /** * Add the password for the service and account to the keychain. * * @param service The string service name. * @param account The string account name. * @param password The string password. * * @returns A promise for the set password completion. */ export declare function setPassword(service: string, account: string, password: string): Promise; /** * Delete the stored password for the service and account. * * @param service The string service name. * @param account The string account name. * * @returns A promise for the deletion status. True on success. */ export declare function deletePassword(service: string, account: string): Promise; /** * Find a password for the service in the keychain. * * @param service The string service name. * * @returns A promise for the password string. */ export declare function findPassword(service: string): Promise;