Index
This commit is contained in:
parent
af5b3de227
commit
0058b885d9
@ -23,9 +23,7 @@ export class HomePage {
|
||||
Device,
|
||||
StatusBar,
|
||||
Toast
|
||||
].filter((p) => {
|
||||
return !!p;
|
||||
});
|
||||
];
|
||||
console.log('PLUGINS', this.plugins);
|
||||
}
|
||||
|
||||
|
4
dist/src/index.d.ts
vendored
4
dist/src/index.d.ts
vendored
@ -1 +1,5 @@
|
||||
export * from './plugins/actionsheet';
|
||||
export * from './plugins/camera';
|
||||
export * from './plugins/device';
|
||||
export * from './plugins/statusbar';
|
||||
export * from './plugins/toast';
|
||||
|
4
dist/src/index.js
vendored
4
dist/src/index.js
vendored
@ -2,6 +2,10 @@ function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
var DEVICE_READY_TIMEOUT = 2000;
|
||||
__export(require('./plugins/actionsheet'));
|
||||
__export(require('./plugins/camera'));
|
||||
__export(require('./plugins/device'));
|
||||
__export(require('./plugins/statusbar'));
|
||||
__export(require('./plugins/toast'));
|
||||
var didFireReady = false;
|
||||
window.addEventListener('deviceready', function () {
|
||||
|
@ -1,9 +1,9 @@
|
||||
const DEVICE_READY_TIMEOUT = 2000;
|
||||
|
||||
//export * from './plugins/actionsheet';
|
||||
//export * from './plugins/camera';
|
||||
//export * from './plugins/device';
|
||||
//export * from './plugins/statusbar';
|
||||
export * from './plugins/actionsheet';
|
||||
export * from './plugins/camera';
|
||||
export * from './plugins/device';
|
||||
export * from './plugins/statusbar';
|
||||
export * from './plugins/toast';
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user