fix(extended-device-information): fix wrong decorator

This commit is contained in:
Daniel 2018-08-21 21:12:43 +02:00
parent 5ac940d2bf
commit 5e9c92a773
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ Checks if the plugin and property exist before getting/setting the property's va
Example: Example:
```ts ```ts
@CordovaProperty @CordovaProperty()
someProperty: string; someProperty: string;
``` ```

View File

@ -53,6 +53,6 @@ export class ExtendedDeviceInformation extends IonicNativePlugin {
/** /**
* Get the total storage * Get the total storage
*/ */
@CordovaProperty @CordovaProperty()
freestorage: number; freestorage: number;
} }