UNPKG

@adaptabletools/adaptable

Version:

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

10 lines (9 loc) 463 B
import React from 'react'; import { ReportFormatType, ReportNameType } from '../../AdaptableState/ExportState'; export interface ReportFormatSelectorProps { viewType: 'Toolbar' | 'ToolPanel' | 'StatusBar' | 'SettingsPanel'; reportName: ReportNameType; reportFormat: ReportFormatType; onReportFormatSelected: (reportFormat: ReportFormatType) => void; } export declare const ReportFormatSelector: React.FunctionComponent<ReportFormatSelectorProps>;