@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) • 600 B
TypeScript
import { IProviderConfiguration } from "../../../types";
/**
* A provider configuration for the dashboard event proxy
*/
export declare const EVENT_PROXY: IProviderConfiguration;
/**
* Retrieves a provider configuration for the interval refresher
*
* @param enabled Specify whether the adapter should be active by default
* @param interval Specify the interval (in seconds) at which the refresher should invoke the data source adapter
*
* @returns A provider configuration for the refresher
*/
export declare function refresher(enabled?: boolean, interval?: number): IProviderConfiguration;