mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
docs(): update docs
This commit is contained in:
parent
6b433b5373
commit
533cc4efc9
@ -4,6 +4,7 @@ import { CordovaProperty, Plugin, IonicNativePlugin } from '@ionic-native/core';
|
|||||||
/**
|
/**
|
||||||
* @name Extended Device Information
|
* @name Extended Device Information
|
||||||
* @description
|
* @description
|
||||||
|
* Retrieves additional device information that is not provided by other plugins
|
||||||
*
|
*
|
||||||
* @usage
|
* @usage
|
||||||
* ```typescript
|
* ```typescript
|
||||||
@ -27,15 +28,21 @@ import { CordovaProperty, Plugin, IonicNativePlugin } from '@ionic-native/core';
|
|||||||
@Injectable()
|
@Injectable()
|
||||||
export class ExtendedDeviceInformation extends IonicNativePlugin {
|
export class ExtendedDeviceInformation extends IonicNativePlugin {
|
||||||
|
|
||||||
/** Get the device's memory size. */
|
/**
|
||||||
|
* Get the device's memory size
|
||||||
|
*/
|
||||||
@CordovaProperty
|
@CordovaProperty
|
||||||
memory: number;
|
memory: number;
|
||||||
|
|
||||||
/** Get the device's CPU mhz. */
|
/**
|
||||||
|
* Get the device's CPU mhz
|
||||||
|
*/
|
||||||
@CordovaProperty
|
@CordovaProperty
|
||||||
cpumhz: string;
|
cpumhz: string;
|
||||||
|
|
||||||
/** Get the device's CPU mhz. */
|
/**
|
||||||
|
* Get the total storage
|
||||||
|
*/
|
||||||
@CordovaProperty
|
@CordovaProperty
|
||||||
totalstorage: string;
|
totalstorage: string;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user