3
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-04-01 04:14:54 +08:00

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
DEVELOPER.md
src/@ionic-native/plugins/extended-device-information

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

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