Learn how to use common KaiOS APIs and InterfacesWake LockKaiOS does not support the Wake Lock API. Instead, it offers it’s own API: 1interface MozWakeLock { 2 readonly topic: string; 3 4 /** 5 * Release the wake lock. 6 * @throw NS_ERROR_DOM_INVALID_STATE_ERR if already unlocked. 7 */ 8 unlock(): void; 9} 10 11// KaiOS 2.5 12navigator.requestWakeLock(aTopic: string): MozWakeLock; 13 14// KaiOS 3.0 15navigator.b2g.requestWakeLock(aTopic: string): MozWakeLock; The KaiOS Wake Lock API will ac...