@react-native-ohos/react-native-idle-timer
Version:
本项目基于 [react-native-idle-timer](https://github.com/marcshilling/react-native-idle-timer)
13 lines (9 loc) • 511 B
text/typescript
// Copyright (c) 2025 Huawei Device Co., Ltd. All rights reserved
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport';
import { TurboModuleRegistry } from 'react-native';
export interface Spec extends TurboModule {
setIdleTimerDisabled: (disabled: boolean, tag?: string)=>void;
}
export default TurboModuleRegistry.get<Spec>('IdleTimerNativeModule') as Spec | null;