@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
17 lines (16 loc) • 578 B
TypeScript
import { AdaptableModule } from '../../types';
/**
* Provides run-time access to the Settings Panel
**/
export interface SettingsPanelApi {
/**
* Opens Settings Panel and displays specified Module (if provided) or first available one
* @param moduleName name of Module to display
*/
openSettingsPanel(moduleName?: AdaptableModule): void;
/**
* Opens Settings Panel with the Custom Settings Panel, provided by name, displayed
* @param name name of Custom Settings Panel to display
*/
openCustomSettingsPanel(name: string): void;
}