@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 332 B
TypeScript
import { AdaptableModule } from '../../types';
/**
* Defines a new name for an Adaptable Module (e.g. change Dashboard to Grid Manager)
*/
export interface AlternativeModuleName {
/**
* Adaptable Module to rename
*/
adaptableModule: AdaptableModule;
/**
* New name to use
*/
newName: string;
}