Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / motif-web-admin-core   js

Repository URL to install this package:

Version: 0.3.1 

/ lib / components / Stats / stats-info-component.d.ts

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;
}