UNPKG

cordova-talsec-plugin-freerasp

Version:

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

15 lines (12 loc) 465 B
import { Component, Input } from '@angular/core'; import { shieldCheckmarkOutline, alertCircleOutline } from 'ionicons/icons'; @Component({ selector: 'app-freerasp-demo', templateUrl: './freerasp-demo.component.html', styleUrls: ['./freerasp-demo.component.css'], }) export class FreeRaspDemoComponent { @Input() checks: { name: string; isSecure: boolean }[] = []; shieldCheckmarkIcon = shieldCheckmarkOutline; alertCircleIcon = alertCircleOutline; }