fabric8-analytics-dep-editor
Version:
19 lines (18 loc) • 522 B
TypeScript
import { OnInit, OnChanges } from '@angular/core';
import { CveResponseModel, BoosterInfo } from '../model/data.model';
export declare class SecurityComponent implements OnInit, OnChanges {
cveData: CveResponseModel;
boosterInfo: BoosterInfo;
title: string;
icon: string;
noOfCves: number;
hasIssue: boolean;
toHave: boolean;
secureIssue: boolean;
itSecurity: boolean;
cveName: any;
constructor();
ngOnChanges(): void;
ngOnInit(): void;
getShow(event: any): void;
}