react-native-malwarelytics
Version:
Malwarelytics for React Native protects your banking or fintech app from a broad range of mobile security threats with an industry-leading mobile threat intelligence solution.
15 lines • 483 B
TypeScript
/** Debugger detection data. */
export interface DebuggerInfo {
/** Whether a debugger is attached. */
readonly isDebuggerAttached: boolean;
/** Whether the app is waiting for a debugger to attach. */
readonly isWaitingForDebugger: boolean;
/** Detected debugger types. */
readonly debuggerType: [DebuggerType];
}
/** Type of debugger. */
export declare enum DebuggerType {
JAVA = "JAVA",
NATIVE = "NATIVE"
}
//# sourceMappingURL=DebuggerInfo.d.ts.map