@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
18 lines (17 loc) • 687 B
TypeScript
import { BehaviorSubject } from "rxjs";
import * as i0 from "@angular/core";
/**
* This provider allows a system wide definition of widget refresh rates.
*/
export declare class RefresherSettingsService {
private _refreshRateSeconds;
refreshRateSeconds$: BehaviorSubject<number>;
/**
* This is a system wide definition of refresh rate. Widgets have to be configured to use
* the system settings to leverage this value.
*/
get refreshRateSeconds(): number;
set refreshRateSeconds(value: number);
static ɵfac: i0.ɵɵFactoryDeclaration<RefresherSettingsService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<RefresherSettingsService>;
}