UNPKG

578 BTypeScriptView Raw
1import { OnInit } from '@angular/core';
2import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
3export declare class JhiThreadModalComponent implements OnInit {
4 activeModal: NgbActiveModal;
5 threadDumpFilter: any;
6 threadDump: any;
7 threadDumpAll: number;
8 threadDumpBlocked: number;
9 threadDumpRunnable: number;
10 threadDumpTimedWaiting: number;
11 threadDumpWaiting: number;
12 constructor(activeModal: NgbActiveModal);
13 ngOnInit(): void;
14 getBadgeClass(threadState: any): "badge-success" | "badge-info" | "badge-warning" | "badge-danger";
15}