UNPKG

@adaptabletools/adaptable

Version:

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

10 lines (9 loc) 400 B
import * as React from 'react'; import { AccessLevel, ChartDefinition } from '../../types'; import { ExternalChartDefinition } from '../../AdaptableState/ChartingState'; export interface ButtonDeleteProps { chart: ChartDefinition | ExternalChartDefinition; accessLevel: AccessLevel; iconSize?: number; } export declare const DeleteChartButton: React.FunctionComponent<ButtonDeleteProps>;