@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 403 B
TypeScript
import * as React from 'react';
import { AdaptableApi } from '../../../../types';
import { DropdownButtonProps } from '../../../components/DropdownButton';
export interface ExportDropdownProps extends Omit<DropdownButtonProps, 'options' | 'value'> {
api: AdaptableApi;
type: 'adaptableState' | 'initialState';
}
export declare const ExportDropdown: React.FunctionComponent<ExportDropdownProps>;