UNPKG

@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

15 lines (14 loc) 497 B
import { BehaviorSubject } from "rxjs"; /** * 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); }