import { Insomnia } from '@awesome-cordova-plugins/insomnia/ngx';
constructor(private insomnia: Insomnia) { }
...
this.insomnia.keepAwake()
  .then(
    () => console.log('success'),
    () => console.log('error')
  );
this.insomnia.allowSleepAgain()
  .then(
    () => console.log('success'),
    () => console.log('error')
  );