메뉴로 이동

시작하기

설치

설치
터미널 창
bun add @capgo/capacitor-keep-awake
bunx cap sync
import { KeepAwake } from '@capgo/capacitor-keep-awake';

API 개요

API 개요

__CAPGO_KEEP_1__ 설명

import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.keepAwake();
console.log('Screen will stay awake');

__CAPGO_KEEP_2__ 설명

import { KeepAwake } from '@capgo/capacitor-keep-awake';
await KeepAwake.allowSleep();
console.log('Screen can now dim');

isSupported

__CAPGO_KEEP_3__

현재 플랫폼에서 유지된 awake 기능이 지원되는지 확인합니다.

import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isSupported } = await KeepAwake.isSupported();
if (isSupported) {
console.log('Keep awake is supported');
}

isKeptAwake

isKeptAwake

현재 장치가 유지된 awake 상태인지 확인합니다.

import { KeepAwake } from '@capgo/capacitor-keep-awake';
const { isKeptAwake } = await KeepAwake.isKeptAwake();
console.log('Is kept awake:', isKeptAwake);

타입 참조

타입 참조

IsSupportedResult

IsSupportedResult

isSupported() 메서드의 결과입니다.

export interface IsSupportedResult {
/**
* Whether keep awake is supported on the current platform.
*
* @since 1.0.0
*/
isSupported: boolean;
}

IsKeptAwakeResult

IsKeptAwakeResult

isKeptAwake() 메서드의 결과입니다.

export interface IsKeptAwakeResult {
/**
* Whether the device is currently being kept awake.
*
* @since 1.0.0
*/
isKeptAwake: boolean;
}

실질적인 출처

실질적인 출처

이 페이지는 플러그인의 src/definitions.ts공개 API이 업스트림에서 변경될 때 다시 동기화 하십시오.