mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-07 23:03:19 +08:00
feat(index):
add missing plugins
This commit is contained in:
parent
43b7f12415
commit
fb0cb19c00
10
src/index.ts
10
src/index.ts
@ -29,6 +29,7 @@ import {Facebook} from './plugins/facebook';
|
|||||||
import {Flashlight} from './plugins/flashlight';
|
import {Flashlight} from './plugins/flashlight';
|
||||||
import {Geolocation} from './plugins/geolocation';
|
import {Geolocation} from './plugins/geolocation';
|
||||||
import {Globalization} from './plugins/globalization';
|
import {Globalization} from './plugins/globalization';
|
||||||
|
import {Hotspot} from './plugins/hotspot';
|
||||||
import {ImagePicker} from './plugins/imagepicker';
|
import {ImagePicker} from './plugins/imagepicker';
|
||||||
import {Keyboard} from './plugins/keyboard';
|
import {Keyboard} from './plugins/keyboard';
|
||||||
import {LaunchNavigator} from './plugins/launchnavigator';
|
import {LaunchNavigator} from './plugins/launchnavigator';
|
||||||
@ -39,6 +40,7 @@ import {Splashscreen} from './plugins/splashscreen';
|
|||||||
import {StatusBar} from './plugins/statusbar';
|
import {StatusBar} from './plugins/statusbar';
|
||||||
import {Toast} from './plugins/toast';
|
import {Toast} from './plugins/toast';
|
||||||
import {TouchID} from './plugins/touchid';
|
import {TouchID} from './plugins/touchid';
|
||||||
|
import {Vibration} from './plugins/vibration';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
ActionSheet,
|
ActionSheet,
|
||||||
@ -65,6 +67,7 @@ export {
|
|||||||
Flashlight,
|
Flashlight,
|
||||||
Geolocation,
|
Geolocation,
|
||||||
Globalization,
|
Globalization,
|
||||||
|
Hotspot,
|
||||||
ImagePicker,
|
ImagePicker,
|
||||||
Keyboard,
|
Keyboard,
|
||||||
LaunchNavigator,
|
LaunchNavigator,
|
||||||
@ -74,7 +77,8 @@ export {
|
|||||||
Splashscreen,
|
Splashscreen,
|
||||||
StatusBar,
|
StatusBar,
|
||||||
Toast,
|
Toast,
|
||||||
TouchID
|
TouchID,
|
||||||
|
Vibration
|
||||||
}
|
}
|
||||||
|
|
||||||
export * from './plugins/plugin';
|
export * from './plugins/plugin';
|
||||||
@ -105,6 +109,7 @@ window['IonicNative'] = {
|
|||||||
Flashlight: Flashlight,
|
Flashlight: Flashlight,
|
||||||
Geolocation: Geolocation,
|
Geolocation: Geolocation,
|
||||||
Globalization: Globalization,
|
Globalization: Globalization,
|
||||||
|
Hotspot: Hotspot,
|
||||||
ImagePicker: ImagePicker,
|
ImagePicker: ImagePicker,
|
||||||
Keyboard: Keyboard,
|
Keyboard: Keyboard,
|
||||||
LaunchNavigator: LaunchNavigator,
|
LaunchNavigator: LaunchNavigator,
|
||||||
@ -114,7 +119,8 @@ window['IonicNative'] = {
|
|||||||
Splashscreen: Splashscreen,
|
Splashscreen: Splashscreen,
|
||||||
StatusBar: StatusBar,
|
StatusBar: StatusBar,
|
||||||
Toast: Toast,
|
Toast: Toast,
|
||||||
TouchID: TouchID
|
TouchID: TouchID,
|
||||||
|
Vibration: Vibration
|
||||||
};
|
};
|
||||||
|
|
||||||
// To help developers using cordova, we listen for the device ready event and
|
// To help developers using cordova, we listen for the device ready event and
|
||||||
|
Loading…
Reference in New Issue
Block a user