Repository URL to install this package:
import { OnInit } from '@angular/core';
import { NGXLogger } from 'web-console-core';
export interface WCStatsInfoItem {
label: string;
value: string;
hidden?: boolean;
cssClass?: string;
color?: string;
}
export interface WCStatsInfoModel {
items: Array<WCStatsInfoItem>;
}
export declare class WCStatsInfoComponent implements OnInit {
private logger;
model: WCStatsInfoModel;
constructor(logger: NGXLogger);
ngOnInit(): void;
}