mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 02:53:03 +08:00
fix directives order
This commit is contained in:
parent
4e5b3fa910
commit
cd7612e32e
@ -90,7 +90,7 @@ export interface CameraPopoverOptions {
|
|||||||
* @description
|
* @description
|
||||||
* Take a photo or capture video.
|
* Take a photo or capture video.
|
||||||
*
|
*
|
||||||
* Requires {@link module:driftyco/ionic-native} and the Cordova plugin: `cordova-plugin-camera`. For more info, please see the [Cordova Camera Plugin Docs](https://github.com/apache/cordova-plugin-camera).
|
* Requires and the Cordova plugin: `cordova-plugin-camera`. For more info, please see the [Cordova Camera Plugin Docs](https://github.com/apache/cordova-plugin-camera).
|
||||||
*
|
*
|
||||||
* @usage
|
* @usage
|
||||||
* ```typescript
|
* ```typescript
|
||||||
@ -120,7 +120,6 @@ export interface CameraPopoverOptions {
|
|||||||
* CameraOptions
|
* CameraOptions
|
||||||
* CameraPopoverOptions
|
* CameraPopoverOptions
|
||||||
*/
|
*/
|
||||||
@Injectable()
|
|
||||||
@Plugin({
|
@Plugin({
|
||||||
pluginName: 'Camera',
|
pluginName: 'Camera',
|
||||||
plugin: 'cordova-plugin-camera',
|
plugin: 'cordova-plugin-camera',
|
||||||
@ -128,6 +127,7 @@ export interface CameraPopoverOptions {
|
|||||||
repo: 'https://github.com/apache/cordova-plugin-camera',
|
repo: 'https://github.com/apache/cordova-plugin-camera',
|
||||||
platforms: ['Android', 'BlackBerry', 'Browser', 'Firefox', 'FireOS', 'iOS', 'Windows', 'Windows Phone 8', 'Ubuntu']
|
platforms: ['Android', 'BlackBerry', 'Browser', 'Firefox', 'FireOS', 'iOS', 'Windows', 'Windows Phone 8', 'Ubuntu']
|
||||||
})
|
})
|
||||||
|
@Injectable()
|
||||||
export class Camera {
|
export class Camera {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -82,7 +82,6 @@ declare var window: any;
|
|||||||
repo: 'https://github.com/cowbell/cordova-plugin-geofence/',
|
repo: 'https://github.com/cowbell/cordova-plugin-geofence/',
|
||||||
platforms: ['Android', 'iOS', 'Windows Phone 8', 'Windows Phone']
|
platforms: ['Android', 'iOS', 'Windows Phone 8', 'Windows Phone']
|
||||||
})
|
})
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class Geofence {
|
export class Geofence {
|
||||||
|
|
||||||
|
@ -167,13 +167,13 @@ export interface HealthData {
|
|||||||
* HealthStoreOptions
|
* HealthStoreOptions
|
||||||
* HealthData
|
* HealthData
|
||||||
*/
|
*/
|
||||||
@Injectable()
|
|
||||||
@Plugin({
|
@Plugin({
|
||||||
pluginName: 'Health',
|
pluginName: 'Health',
|
||||||
plugin: 'cordova-plugin-health',
|
plugin: 'cordova-plugin-health',
|
||||||
pluginRef: 'navigator.health',
|
pluginRef: 'navigator.health',
|
||||||
repo: 'https://github.com/dariosalvi78/cordova-plugin-health'
|
repo: 'https://github.com/dariosalvi78/cordova-plugin-health'
|
||||||
})
|
})
|
||||||
|
@Injectable()
|
||||||
export class Health {
|
export class Health {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -109,12 +109,12 @@ export class Mixpanel {
|
|||||||
/**
|
/**
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
@Injectable()
|
|
||||||
@Plugin({
|
@Plugin({
|
||||||
plugin: 'cordova-plugin-mixpanel',
|
plugin: 'cordova-plugin-mixpanel',
|
||||||
pluginRef: 'mixpanel.people',
|
pluginRef: 'mixpanel.people',
|
||||||
pluginName: 'Mixpanel'
|
pluginName: 'Mixpanel'
|
||||||
})
|
})
|
||||||
|
@Injectable()
|
||||||
export class MixpanelPeople {
|
export class MixpanelPeople {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -184,12 +184,12 @@ export class NFC {
|
|||||||
/**
|
/**
|
||||||
* @hidden
|
* @hidden
|
||||||
*/
|
*/
|
||||||
@Injectable()
|
|
||||||
@Plugin({
|
@Plugin({
|
||||||
pluginName: 'NFC',
|
pluginName: 'NFC',
|
||||||
plugin: 'phonegap-nfc',
|
plugin: 'phonegap-nfc',
|
||||||
pluginRef: 'ndef'
|
pluginRef: 'ndef'
|
||||||
})
|
})
|
||||||
|
@Injectable()
|
||||||
export class Ndef {
|
export class Ndef {
|
||||||
|
|
||||||
@Cordova({ sync: true })
|
@Cordova({ sync: true })
|
||||||
|
Loading…
Reference in New Issue
Block a user