UNPKG

freerasp-react-native

Version:

React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.

14 lines (10 loc) 257 B
export class RaspExecutionState { value: number; static AllChecksFinished = new RaspExecutionState(0); constructor(value: number) { this.value = value; } static getValues(): RaspExecutionState[] { return [this.AllChecksFinished]; } }