Skip to content

Commit 3412eb2

Browse files
committed
fix: linting issue with Check Status
1 parent eda1e20 commit 3412eb2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
Text,
99
View,
1010
} from 'react-native';
11-
import { isDeviceRooted } from 'react-native-detect-frida';
11+
import { isDeviceRooted, type CheckStatus } from 'react-native-detect-frida';
1212

1313
export default function App() {
1414
const [rooted, setRooted] = React.useState<string | undefined>();

src/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { NativeModules, Platform } from 'react-native';
22
import type { RootCheckResult } from './ValueTypes';
33
import NativeDetectFrida from './NativeDetectFrida';
44

5+
export type { CheckStatus, RootCheckResult } from './ValueTypes';
6+
57
const DetectFrida = NativeDetectFrida
68
? NativeDetectFrida
79
: NativeModules.DetectFrida;

0 commit comments

Comments
 (0)