mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-14 04:05:23 +08:00
48 lines
1010 B
TypeScript
48 lines
1010 B
TypeScript
import {Plugin, Cordova} from './plugin';
|
|
|
|
/**
|
|
* @name Insomnia
|
|
* @description
|
|
* Prevent the screen of the mobile device from falling asleep.
|
|
*
|
|
* @usage
|
|
* ```js
|
|
* import {Insomnia} from 'ionic-native';
|
|
*
|
|
* Insomnia.keepAwake()
|
|
* .then(
|
|
* () => console.log('success'),
|
|
* () => console.log('error')
|
|
* );
|
|
*
|
|
* Insomnia.allowSleepAgain()
|
|
* .then(
|
|
* () => console.log('success'),
|
|
* () => console.log('error')
|
|
* );
|
|
* ```
|
|
*
|
|
*/
|
|
@Plugin({
|
|
plugin: 'https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin.git',
|
|
pluginRef: 'plugins.insomnia',
|
|
repo: 'https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin',
|
|
platforms: ['Android', 'iOS', 'Windows Phone 8']
|
|
})
|
|
export class Insomnia {
|
|
|
|
/**
|
|
* Keeps awake the application
|
|
* @returns {Promise}
|
|
*/
|
|
@Cordova()
|
|
static keepAwake(): Promise<any> { return; }
|
|
|
|
/**
|
|
* Allows the application to sleep again
|
|
* @returns {Promise}
|
|
*/
|
|
@Cordova()
|
|
static allowSleepAgain(): Promise<any> { return; }
|
|
}
|