@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 475 B
TypeScript
import * as React from 'react';
import { AdaptableApi, AdaptableMenuItem } from '../../../../../types';
import { CustomSettingsPanel } from '../../../../AdaptableOptions/SettingsPanelOptions';
interface NavigationProps {
api: AdaptableApi;
menuItems: (AdaptableMenuItem | '-')[];
activeItem: string;
customSettingsPanels?: CustomSettingsPanel[];
}
export declare const Navigation: React.FunctionComponent<React.PropsWithChildren<NavigationProps>>;
export {};