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