diff --git a/src/@ionic-native/plugins/secure-storage/index.ts b/src/@ionic-native/plugins/secure-storage/index.ts index ef60796bd..273d2e375 100644 --- a/src/@ionic-native/plugins/secure-storage/index.ts +++ b/src/@ionic-native/plugins/secure-storage/index.ts @@ -12,43 +12,43 @@ export class SecureStorageObject { /** * Gets a stored item - * @param reference {string} - * @returns {Promise} + * @param key {string} + * @returns {Promise} */ @CordovaInstance({ callbackOrder: 'reverse' }) - get(reference: string): Promise { return; } + get(key: string): Promise { return; } /** * Stores a value - * @param reference {string} + * @param key {string} * @param value {string} * @returns {Promise} */ @CordovaInstance({ callbackOrder: 'reverse' }) - set(reference: string, value: string): Promise { return; } + set(key: string, value: string): Promise { return; } /** * Removes a single stored item - * @param reference {string} - * @returns {Promise} + * @param key {string} + * @returns {Promise} returns a promise that resolves with the key that was removed */ @CordovaInstance({ callbackOrder: 'reverse' }) - remove(reference: string): Promise { return; } + remove(key: string): Promise { return; } /** * Get all references from the storage. - * @returns {Promise} + * @returns {Promise} returns a promise that resolves with array of keys storage */ @CordovaInstance({ callbackOrder: 'reverse' }) - keys(): Promise { return; } + keys(): Promise { return; } /** * Clear all references from the storage.