@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 494 B
TypeScript
import React from 'react';
import { ReportFormatType, ReportNameType } from '../../AdaptableState/ExportState';
export interface ReportFormatSelectorProps {
viewType: 'Toolbar' | 'ToolPanel' | 'StatusBar' | 'SettingsPanel';
size?: 'small' | 'normal';
reportName: ReportNameType;
reportFormat: ReportFormatType;
onReportFormatSelected: (reportFormat: ReportFormatType) => void;
}
export declare const ReportFormatSelector: React.FunctionComponent<ReportFormatSelectorProps>;