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.
18 lines • 507 B
TypeScript
/**
* Result of single smart protection udpdate.
*/
export interface SmartProtectionResult {
/**
* Wether was the UI displayed. A UI can be either a threat screen or a notification.
*/
readonly uiDisplayed: boolean;
/**
* Whether data update from server succeeded.
*/
readonly onlineUpdateSucceeded: boolean;
/**
* Whether evaluation of threats succeeded.
*/
readonly evaluationSucceeded: boolean;
}
//# sourceMappingURL=SmartProtectionResult.d.ts.map