chore(): tslint

This commit is contained in:
Ibby 2016-12-27 08:43:06 -05:00
parent 46a9b6d50d
commit c618ceb693

View File

@ -156,12 +156,12 @@ export class AndroidFingerprintAuth {
* @returns {Promise<any>} Returns a Promise that resolves if fingerprint auth is available on the device
*/
@Cordova()
static isAvailable(): Promise<{isAvailable: boolean}> {return; }
static isAvailable(): Promise<{isAvailable: boolean}> { return; }
/**
* Delete the cipher used for encryption and decryption by username
* @returns {Promise<any>} Returns a Promise that resolves if the cipher was successfully deleted
*/
@Cordova()
static delete(options: {clientId: string; username: string;}): Promise<{deleted: boolean}> {return; }
static delete(options: {clientId: string; username: string; }): Promise<{deleted: boolean}> { return; }
}