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 / sections / MainDashboard / data / updaters / ServerInfo / ServerInfoUpdater.d.ts

import { NGXLogger } from 'web-console-core';
import { InfoService, ServerInfo } from '@wa-motif-open-api/info-service';
export declare class ServerInfoUpdater {
    private logger;
    private infoService;
    private _interval;
    private _intervalTimer;
    private _intervalSubscription;
    private _data;
    private _dataReady;
    private _dataError;
    constructor(logger: NGXLogger, infoService: InfoService);
    start(intervalTime: any): void;
    stop(): void;
    readonly interval: number;
    readonly isRunning: boolean;
    reloadData(): void;
    readonly data: ServerInfo;
}