UNPKG

cordova-plugin-autostarter

Version:

The application will be automatically started after the every boot and the automatic update of your application. You can enable or disable the autostart function in your app.

27 lines (26 loc) 378 B
/** * * */ export interface Window { cordova : { plugins: { autoStart : AutoStartInterface } } } /** * * */ export interface AutoStartInterface { enable() : never; enableService(id: string) : never; disable() : never; } /** * * */ export declare var cordova : { plugins:{ autoStart : AutoStartInterface } };