UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

24 lines (23 loc) 554 B
import { AdaptableFrameworkComponent } from '../../types'; import { CustomRenderFunction } from '../../agGrid/AdaptableFrameworkComponent'; /** * Config when displaying a Progress Indicator */ export interface ProgressIndicatorConfig { /** * Text to display */ text?: string; /** * Render function */ render?: CustomRenderFunction; /** * A React or Angular Framework component to use */ frameworkComponent?: AdaptableFrameworkComponent; /** * Length of Delay */ delay?: number; }