From 2503ef2ee58448732c06d99c49091b56f742848c Mon Sep 17 00:00:00 2001 From: Gilles Callebaut Date: Wed, 3 Aug 2016 00:52:37 +0200 Subject: [PATCH] docs(): Update nativestorage.ts (#384) --- src/plugins/nativestorage.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plugins/nativestorage.ts b/src/plugins/nativestorage.ts index 35f96a609..66bc7e9e3 100644 --- a/src/plugins/nativestorage.ts +++ b/src/plugins/nativestorage.ts @@ -2,8 +2,8 @@ import { Cordova, Plugin } from './plugin'; /** - * @name Native Storage - * @description + * @name NativeStorage + * @description Native storage of variables in Android and iOS * * @usage * ```typescript @@ -30,7 +30,7 @@ import { Cordova, Plugin } from './plugin'; export class NativeStorage { /** * Stores a value - * @param reference + * @param reference {string} * @param value */ @Cordova() @@ -38,14 +38,14 @@ export class NativeStorage { /** * Gets a stored item - * @param reference + * @param reference {string} */ @Cordova() static getItem(reference: string): Promise {return; } /** * Removes a single stored item - * @param reference + * @param reference {string} */ @Cordova() static remove(reference: string): Promise {return; }