feat(extended-device-information): add Extended Device Info plugin (#1980)

* Added Cordova Device Information Wrapper

* Updated Usage Description

* Removed unsued line

* Added Total Storage
This commit is contained in:
Daniel Ehrhardt 2017-09-27 23:36:00 +02:00 committed by Ibby Hadeed
parent 432c0e901d
commit 806766e33e

View File

@ -0,0 +1,42 @@
import { Injectable } from '@angular/core';
import { CordovaProperty, Plugin, IonicNativePlugin } from '@ionic-native/core';
/**
* @name Extended Device Information
* @description
*
* @usage
* ```typescript
* import { ExtendedDeviceInformation } from '@ionic-native/extended-device-information';
*
*
* constructor(private extendedDeviceInformation: ExtendedDeviceInformation) { }
*
* ...
*
* console.log('The Memory is: ' + this.extendedDeviceInformation.memory);
* ```
*/
@Plugin({
pluginName: 'ExtendedDeviceInformation',
plugin: 'cordova-plugin-extended-device-information',
pluginRef: 'extended-device-information',
repo: 'https://github.com/danielehrhardt/cordova-plugin-extended-device-information',
platforms: ['Android']
})
@Injectable()
export class ExtendedDeviceInformation extends IonicNativePlugin {
/** Get the device's memory size. */
@CordovaProperty
memory: number;
/** Get the device's CPU mhz. */
@CordovaProperty
cpumhz: string;
/** Get the device's CPU mhz. */
@CordovaProperty
totalstorage: string;
}