UNPKG

597 BTypeScriptView Raw
1import { AppStatus, CordovaDependencies, CordovaOptions, ICordova } from './definitions';
2/**
3 * @hidden
4 */
5export declare class Cordova implements ICordova {
6 protected options: CordovaOptions;
7 /**
8 * Native information about the app.
9 */
10 app: AppStatus;
11 /**
12 * @private
13 */
14 private device;
15 /**
16 * @private
17 */
18 private emitter;
19 /**
20 * @private
21 */
22 private logger;
23 constructor(deps: CordovaDependencies, options?: CordovaOptions);
24 bootstrap(): void;
25 /**
26 * @private
27 */
28 private registerEventHandlers();
29}